About 23,300,000 results
Open links in new tab
  1. algorithm - Peak signal detection in realtime timeseries data - Stack ...

    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 given x …

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

    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 minimum number …

  3. Algorithm for simplifying decimal to fractions - Stack Overflow

    My algorithm (short explanation) To fully understand my algorithm, you need to have read the article by Ian Richards or at least understand what a Farey pair is. Furthermore, read the algorithm with …

  4. What's the fastest algorithm for sorting a linked list?

    1 As I know, the best sorting algorithm is O (n*log n), whatever the container - it's been proved that sorting in the broad sense of the word (mergesort/quicksort etc style) can't go lower. Using a linked …

  5. What's a good algorithm to generate a maze? - Stack Overflow

    This algorithm results in Mazes with about as high a "river" factor as possible, with fewer but longer dead ends, and usually a very long and twisty solution. It runs quite fast, although Prim's algorithm is a bit …

  6. How can I find the time complexity of an algorithm?

    1. Introduction In computer science, the time complexity of an algorithm quantifies the amount of time taken by an algorithm to run as a function of the length of the string representing the input. 2. Big O …

  7. What algorithm can be used for packing rectangles of different sizes ...

    What algorithm can be used for packing rectangles of different sizes into the smallest rectangle possible in a fairly optimal way?

  8. Fuzzy search algorithm (approximate string matching algorithm)

    The only way I can think of implementing it as a search algorithm is to perform a linear search and executing the string metric algorithm for each string and returning the strings with scores above a …

  9. What is the fastest integer factorization algorithm?

    The algorithm picks on a number A along the curve, then looks up the safe distance and jumps to the next hashtable, or at least the algorithm does those factor checks until the next hashtable becomes …

  10. What's the algorithm behind minesweeper generation

    7 A Strong Algorithm Here is an implementation of a MineSweeper algorithm. This algorithm takes into account some conditions while generating the map, and also performs a solver algorithm to make …