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

  2. algorithm - Understanding quicksort - Stack Overflow

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

  3. The best shortest path algorithm - Stack Overflow

    What is the difference between the "Floyd-Warshall algorithm" and "Dijkstra's Algorithm", and which is the best for finding the shortest path in a graph? I need to calculate the shortest path betw...

  4. Is there an efficient algorithm to generate a 2D concave hull?

    The answer may still be interesting for somebody else: One may apply a variation of the marching square algorithm, applied (1) within the concave hull, and (2) then on (e.g. 3) different scales that my …

  5. What is the difference between a heuristic and an algorithm?

    Feb 25, 2010 · An algorithm is the description of an automated solution to a problem. What the algorithm does is precisely defined. The solution could or could not be the best possible one but you know from …

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

    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 standing at p and …

  7. is dijkstra an A* algorithm? - Stack Overflow

    May 23, 2025 · The A* algorithm algorithm can be seen as a generalisation of Dijkstra's algorithm, but there is one caveat: Dijkstra's algorithm can be used to efficiently find shortest paths to all nodes in a …

  8. logic - How does the DPLL algorithm work? - Stack Overflow

    Sep 23, 2012 · This algorithm is taken from the book Artificial Intelligence A modern approach. I'm finding it really confusing with those many function recursions. In particular, what does the EXTEND() …

  9. Where can I find information on the D* or D* Lite pathfinding algorithm?

    May 24, 2010 · As opposed to repeated A* search, the D* Lite algorithm avoids replanning from scratch and incrementally repair path keeping its modifications local around robot pose. if you would like to …

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