Graph traversal algorithm Flashcards

1
Q

2 types of traversing a graph

A

Breadth first
Depth first

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is used in a depth first traversal

A

A stack to track last node visited
A list to hold names of nodes already met

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the steps of a depth first traversal

A

Visit the node and add to the visited list

Then push the node onto a stack then go to the next node

Continue until you cannot go any further

Then pop off the stack till you get to a node that has an available next node

Once stack is empty this shows the algorithm has been finished

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is used in a breadth first traversal

A

A queue is used to keep track of the nodes left to visit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the steps in a breadth first traversal

A

Append first node to an empty queue

Dequeue the node and add to a visited list

Then check the nodes adjacent and append them to the queue

Then dequeue the node at the start of the queue

Continue until you have an empty queue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Difference between depth first traversal and breadth first traversal

A

Depth-first you go as far down the path you can before backtracking and trying a new path

Breadth-first you explore the neighbouring nodes of the current vertex

How well did you know this?
1
Not at all
2
3
4
5
Perfectly