enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Shortest path problem - Wikipedia

    en.wikipedia.org/wiki/Shortest_path_problem

    The all-pairs shortest path problem, in which we have to find shortest paths between every pair of vertices v, v' in the graph. These generalizations have significantly more efficient algorithms than the simplistic approach of running a single-pair shortest path algorithm on all relevant pairs of vertices.

  3. Dijkstra's algorithm - Wikipedia

    en.wikipedia.org/wiki/Dijkstra's_algorithm

    Dijkstra's algorithm finds the shortest path from a given source node to every other node. [7]: 196–206 It can be used to find the shortest path to a specific destination node, by terminating the algorithm after determining the shortest path to the destination node. For example, if the nodes of the graph represent cities, and the costs of ...

  4. A* search algorithm - Wikipedia

    en.wikipedia.org/wiki/A*_search_algorithm

    A* is an informed search algorithm, or a best-first search, meaning that it is formulated in terms of weighted graphs: starting from a specific starting node of a graph, it aims to find a path to the given goal node having the smallest cost (least distance travelled, shortest time, etc.).

  5. Parallel all-pairs shortest path algorithm - Wikipedia

    en.wikipedia.org/wiki/Parallel_all-pairs...

    A central problem in algorithmic graph theory is the shortest path problem. Hereby, the problem of finding the shortest path between every pair of nodes is known as all-pair-shortest-paths (APSP) problem. As sequential algorithms for this problem often yield long runtimes, parallelization has shown to be beneficial in this field. In this ...

  6. List of graph theory topics - Wikipedia

    en.wikipedia.org/wiki/List_of_graph_theory_topics

    This is a list of graph theory topics, by Wikipedia page. ... Shortest path problem. Dijkstra's algorithm. Open Shortest Path First; Flooding algorithm;

  7. Bellman–Ford algorithm - Wikipedia

    en.wikipedia.org/wiki/Bellman–Ford_algorithm

    The Bellman–Ford algorithm is an algorithm that computes shortest paths from a single source vertex to all of the other vertices in a weighted digraph. [1] It is slower than Dijkstra's algorithm for the same problem, but more versatile, as it is capable of handling graphs in which some of the edge weights are negative numbers. [2]

  8. Pathfinding - Wikipedia

    en.wikipedia.org/wiki/Pathfinding

    Two primary problems of pathfinding are (1) to find a path between two nodes in a graph; and (2) the shortest path problem—to find the optimal shortest path. Basic algorithms such as breadth-first and depth-first search address the first problem by exhausting all possibilities; starting from the given node, they iterate over all potential ...

  9. Category:Graph algorithms - Wikipedia

    en.wikipedia.org/wiki/Category:Graph_algorithms

    Parallel all-pairs shortest path algorithm; Parallel breadth-first search; Parallel single-source shortest path algorithm; Path-based strong component algorithm; Pre-topological order; Prim's algorithm; Proof-number search; Push–relabel maximum flow algorithm