An open API service indexing awesome lists of open source software.

https://github.com/emahtab/depth-first-search

Depth First Search Traversal
https://github.com/emahtab/depth-first-search

depth-first-search tree-traversal

Last synced: 10 months ago
JSON representation

Depth First Search Traversal

Awesome Lists containing this project

README

          

# Depth First Search (DFS)

A
/|\
/ | \
/ | \
/ | \
B C D
/ |
/ |
E H
/ \
/ \
F G

Depth First Traversal : [A, B, E, F, G, C, H, D]