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

  2. c - Fast CRC algorithm? - Stack Overflow

    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 rare). So: any suggestions for a fast …

  3. algorithm - Difference and advantages between dijkstra & A star

    Oct 23, 2012 · A* is just like Dijkstra, the only difference is that A* tries to look for a better path by using a heuristic function which gives priority to nodes that are supposed to be better than others while …

  4. 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 the game is …

  5. Circle line-segment collision detection algorithm? - Stack Overflow

    Jul 2, 2009 · I have a line from A to B and a circle positioned at C with the radius R. What is a good algorithm to use to check whether the line intersects the circle? And at what coordinate along the …

  6. 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 from Wikipedia: …

  7. algorithm - Finding all possible combinations of numbers to reach a ...

    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 add: N = …

  8. algorithm - What is the difference between depth and height in a tree ...

    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 path between …

  9. a star - A* Search Algorithm - Stack Overflow

    At each iteration the algorithm chooses a node to expand from the open set (the one with the lowest f function - the f function is the sum of the cost the algorithm already knows it takes to get to the node …

  10. HMAC-SHA256 Algorithm for signature calculation - Stack Overflow

    Aug 19, 2011 · HMAC-SHA256 Algorithm for signature calculation Asked 14 years, 3 months ago Modified 4 years, 1 month ago Viewed 252k times