If you're seeing this message, it means we're having trouble loading external resources on our website.

Hvis du er bak et webfilter, vær vennlig å sørge for at domenene .kastatic.org og .kastatic.org ikke er blokkert.

Hovedinnhold

Analysere bredde-først-søk

How long does breadth-first search take for a graph with vertex set V and edge set E? The answer is O(V+E) time.
Let's see what O(V+E) time means. Assume for the moment that |E||V|, which is the case for most graphs, especially those for which we run breadth-first search. Then |V|+|E||E|+|E|=2|E|. Because we ignore constant factors in asymptotic notation, we see that when |E||V|, O(V+E) really means O(E). If, however, we have |E|<|V|, then |V|+|E||V|+|V|=2|V|, and so O(V+E) really means O(V). We can put both cases together by saying that O(V+E) really means O(max(V,E)). In general, if we have parameters x and y, then O(x+y) really means O(max(x,y)).
(Note, by the way, that a graph is connected if there is a path from every vertex to all other vertices. The minimum number of edges that a graph can have and still be connected is |V|1. A graph in which |E|=|V|1 is called a free tree.)
How is it that breadth-first search runs in O(V+E) time? It takes O(V) time to initialize the distance and predecessor for each vertex (Θ(V) time, actually). Each vertex is visited at most one time, because only the first time that it is reached is its distance null, and so each vertex is enqueued at most one time. Since we examine the edges incident on a vertex only when we visit from it, each edge is examined at most twice, once for each of the vertices it's incident on. Thus, breadth-first search spends O(V+E) time visiting vertices.

This content is a collaboration of Dartmouth Computer Science professors Thomas Cormen and Devin Balkcom, plus the Khan Academy computing curriculum team. The content is licensed CC-BY-NC-SA.

Ønsker du å delta i samtalen?

Ingen innlegg enda.
Forstår du engelsk? Klikk her for å se flere diskusjoner på Khan Academys engelske side.