enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Topological sorting - Wikipedia

    en.wikipedia.org/wiki/Topological_sorting

    An alternative algorithm for topological sorting is based on depth-first search.The algorithm loops through each node of the graph, in an arbitrary order, initiating a depth-first search that terminates when it hits any node that has already been visited since the beginning of the topological sort or the node has no outgoing edges (i.e., a leaf node):

  3. Graph traversal - Wikipedia

    en.wikipedia.org/wiki/Graph_traversal

    A depth-first search (DFS) is an algorithm for traversing a finite graph. DFS visits the child vertices before visiting the sibling vertices; that is, it traverses the depth of any particular path before exploring its breadth. A stack (often the program's call stack via recursion) is generally used when implementing the algorithm.

  4. Depth-first search - Wikipedia

    en.wikipedia.org/wiki/Depth-first_search

    a depth-first search starting at the node A, assuming that the left edges in the shown graph are chosen before right edges, and assuming the search remembers previously visited nodes and will not repeat them (since this is a small graph), will visit the nodes in the following order: A, B, D, F, E, C, G.

  5. Tarjan's strongly connected components algorithm - Wikipedia

    en.wikipedia.org/wiki/Tarjan's_strongly_connected...

    The basic idea of the algorithm is this: a depth-first search (DFS) begins from an arbitrary start node (and subsequent depth-first searches are conducted on any nodes that have not yet been found). As usual with depth-first search, the search visits every node of the graph exactly once, refusing to revisit any node that has already been visited.

  6. Widest path problem - Wikipedia

    en.wikipedia.org/wiki/Widest_path_problem

    In any graph, directed or undirected, there is a straightforward algorithm for finding a widest path once the weight of its minimum-weight edge is known: simply delete all smaller edges and search for any path among the remaining edges using breadth-first search or depth-first search.

  7. Talk:Depth-first search - Wikipedia

    en.wikipedia.org/wiki/Talk:Depth-first_search

    The underlying issue is that 2 occurs in two places in the graph, as a child of 1 and as a child of 3, and the place where it's discovered first is later in the depth-first order. For breadth-first search it doesn't affect the correctness of the algorithm whether you do the check before enqueueing or after dequeueing. But for depth-first search ...

  8. Prim's algorithm - Wikipedia

    en.wikipedia.org/wiki/Prim's_algorithm

    For graphs of even greater density (having at least |V| c edges for some c > 1), Prim's algorithm can be made to run in linear time even more simply, by using a d-ary heap in place of a Fibonacci heap. [10] [11] Demonstration of proof. In this case, the graph Y 1 = Y − f + e is already equal to Y. In general, the process may need to be repeated.

  9. External memory graph traversal - Wikipedia

    en.wikipedia.org/wiki/External_memory_graph...

    Graph traversal is a subroutine in most graph algorithms. The goal of a graph traversal algorithm is to visit (and / or process) every node of a graph. Graph traversal algorithms, like breadth-first search and depth-first search, are analyzed using the von Neumann model, which assumes uniform memory access cost. This view neglects the fact ...