Please enable JavaScript.
Coggle requires JavaScript to display documents.
Data Scturcture - Coggle Diagram
Data Scturcture
Non-linear Data Structure
tree
Treee Traversal
Depth-first Traversal: a node and all its descendents are visited before the next sibling is visited.
Depth-first traversal using recursion
preorder: visit a node then visit its children
inOrder
PostOrder
Depth-first Traversal without recursion
stack
queue
Binary tree
graph
graph traversal
BFS
DFS
Linear Data Structure
t