Please enable JavaScript.
Coggle requires JavaScript to display documents.
Data Sturctures (Graphs (Dynamic Data Structure, Very versatile, other…
Data Sturctures
Graphs
-
Very versatile, other used to model networks
-
-
-
-
-
Arrays
1,2 and 3 Dimensional Arrays
-
-
Traversing a Graph
Depth-first (using a stack) -Start at root, follow one branch as far as it will go, then backtrack
Breadth-first (using a queue) -Start a root, scan every node connected and then continue scanning from left to right
Trees
Binary Tree
-
Efficient sorting, searching and retrieval of data
-
-