A Graph Traversal algorithm that searches in ‘rings’.
Algorithm
Top-down Programming
- Starts at vertex 0
- Save all previously visited nodes in a list
- Continue until there is no more adjacent nodes that have not been met
A Graph Traversal algorithm that searches in ‘rings’.