About 11,300,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. 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 …

  4. Tower of Hanoi: Recursive Algorithm - Stack Overflow

    Aug 3, 2009 · Although I have no problem whatsoever understanding recursion, I can't seem to wrap my head around the recursive solution to the Tower of Hanoi problem. Here is the code …

  5. android - Which algorithm does Google maps use to compute the …

    Aug 25, 2014 · 11 I wonder which algorithm Google maps use to compute the direction between 2 points ? Has Google ever mentioned about it ? p/s : I am asking the algorithm which google …

  6. 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 …

  7. c - Fast CRC algorithm? - Stack Overflow

    Aug 26, 2021 · CRC32 algorithm is exactly what I'm looking for, but I can't use it because the table it requires is way too huge (it is for an embedded system where resources are VERY …

  8. c# - Flood Fill Algorithms - Stack Overflow

    You really want an explicit data structure. An auxiliary queue uses much less space than a stack. About forty times less space. In other words, prefer breadth-first search to depth-first search. …

  9. algorithm - Calculate distance between two latitude-longitude …

    Aug 26, 2008 · How do I calculate the distance between two points specified by latitude and longitude? For clarification, I'd like the distance in kilometers; the points use the WGS84 …

  10. algorithm - How to find convex hull in a 3 dimensional space

    Aug 24, 2013 · The algorithm find the successive convex hull vertex like this: the vertex immediately following a point p is the point that appears to be furthest to the right to someone …