Digital Marketing

The DFS algorithm works as follows

Start by putting any one of the graph's vertices on top of a stack.
Take the top item of the stack and add it to the visited list.
Create a list of that vertex's adjacent nodes. Add the ones which aren't in the visited list to the top of stack.
Keep repeating steps 2 and 3 until the stack is empty.

Comments

Popular posts from this blog

MySQL Sandbox with the Sakila sample database