About 14,900,000 results
Open links in new tab
  1. algorithm - Peak signal detection in realtime timeseries data

    Robust peak detection algorithm (using z-scores) I came up with an algorithm that works very well for these types of datasets. It is based on the principle of dispersion: if a new datapoint is a …

  2. What are some algorithms for comparing how similar two strings …

    What you're looking for are called String Metric algorithms. There a significant number of them, many with similar characteristics. Among the more popular: Levenshtein Distance : The …

  3. algorithm - Finding all possible combinations of numbers to reach …

    Jan 8, 2011 · How would you go about testing all possible combinations of additions from a given set N of numbers so they add up to a given final number? A brief example: Set of numbers to …

  4. algorithm - Understanding quicksort - Stack Overflow

    Sep 23, 2016 · The pivot selection The execution speed of the algorithm depends largely on how this mechanism is implemented, poor implementation can assume that the algorithm is run at …

  5. What is the optimal algorithm for the game 2048? - Stack Overflow

    Mar 12, 2014 · AI Algorithm I found a simple yet surprisingly good playing algorithm: To determine the next move for a given board, the AI plays the game in memory using random moves until …

  6. What is Sliding Window Algorithm? Examples? - Stack Overflow

    While solving a geometry problem, I came across an approach called Sliding Window Algorithm. Couldn't really find any study material/details on it. What is the algorithm about?

  7. What is the fastest substring search algorithm? - Stack Overflow

    Aug 13, 2013 · Each search algorithm comes in several variations that can make significant differences to its performance, as, for example, this paper illustrates. Benchmark your service …

  8. algorithm - Difference between Big-O and Little-O Notation

    Sep 1, 2009 · Algorithm A can't tell the difference between two similar inputs instances where only x 's value changes. If x is the minimum in one of these instances and not in the other, then A …

  9. Are there any worse sorting algorithms than Bogosort (a.k.a …

    Apr 10, 2010 · 483 From David Morgan-Mar 's Esoteric Algorithms page: Intelligent Design Sort Introduction Intelligent design sort is a sorting algorithm based on the theory of intelligent …

  10. algorithm - What is the difference between depth and height in a …

    Dec 1, 2023 · This is a simple question from algorithms theory. The difference between them is that in one case you count number of nodes and in other number of edges on the shortest …