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
- Host: GitHub
- URL: https://github.com/emahtab/depth-first-search
- Owner: eMahtab
- Created: 2019-11-23T04:41:18.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-24T14:57:28.000Z (about 6 years ago)
- Last Synced: 2025-02-02T03:26:09.633Z (11 months ago)
- Topics: depth-first-search, tree-traversal
- Language: Java
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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]