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

  2. algorithm - Finding kth-shortest paths? - Stack Overflow

    Furthermore, since each sub-problem uses a standard shortest path algorithm (e.g. Dijkstra’s algorithm), it is a more natural extension from the 1st shortest path problem to the Kth shortest …

  3. algorithm - Fastest Sorting Technique - Stack Overflow

    I have been trying various sorting algorithms for past few days. Starting from 1) Algorithms with O(n^2) time complexity sorting 2) O(n log n) time complexity with in place and out of place sorting

  4. algorithm - Bellman-Ford vs Dijkstra: Under what circumstances is ...

    76 After a lot of Googling, I've found that most sources say that the Dijkstra algorithm is "more efficient" than the Bellman-Ford algorithm. But under what circumstances is the Bellman-Ford …

  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 …

  6. algorithm - Higher-order unification - Stack Overflow

    The complete development of a unification algorithm for so-called higher-order patterns, a subclass of $\lambda$-terms, is presented. The starting point is a formulation of unification by …

  7. Newest 'algorithm' Questions - Stack Overflow

    Stack Overflow | The World’s Largest Online Community for Developers

  8. algorithm - Programming theory: Solve a maze - Stack Overflow

    0 The best way to solve a maze is to use a connectivity algorithm such as union-find which is a quasi-linear time algorithm assuming path compression is done. Union-Find is a data structure …

  9. algorithm - Reversing CRC32 - Stack Overflow

    I'm looking for a way to reverse a CRC32 checksum. There are solutions around, but they are either badly written, extremely technical and/or in Assembly. Assembly is (currently) beyond …

  10. Minesweeper solving algorithm - Stack Overflow

    Simple random guessing didn't produce good results. I implemented this method into my solving algorithm in C++ by adding a linear system of equations-solver. I am researching the difficulcy …