Please enable JavaScript.
Coggle requires JavaScript to display documents.
1.4.2 data structures (linked list (traversing (set pointer to start,…
1.4.2 data structures
linked list
-
-
undo function, browser cache , os job ques
-
-
-
-
-
-
-
-
-
-
graph
-
-
-
navigation, data transmission,links, socail media
-
-
-
-
-
-
-
-
hash tables
arrays stores information contiguously on memory associated with an index- meaning quick and easy random access but it is static and fixed
-
-
-
-
-
-
trees
-
children, root , branches ,leef node
pointers , in an array, with a tree that points to sub tree node and pointers to trees at the same level
binatry tree
-
-
-
-
each node contains a left pointer , data and a right pointer
-
-
-
-