Please enable JavaScript.
Coggle requires JavaScript to display documents.
Data Structures (Pseudocode for all data structures: -creating -adding…
Data Structures
Arrays
1,2,3 Dimension arrays
Static - can't be redesigned
One data type
Mutable
Record
Different data types
Mutable
Static
pupil = new record[ name as string age as integer date of birth as date
]
Tuple
Immutable - can't be changed
Static - fixed data type
Different data types
Pupil = ("John", 17, 3/1/2003)
List
.Dynamic
One data type
Mutable - change data
mylist = new list of strings mylist.add("milk") mylist("bread")
Hash table
Stack
L.I.F.O
Last in First out
Queue
F.I.F.O
First In First Out
Linked-list
Trees
Graphs
Pseudocode for all data structures:
-creating
-adding
-removing
-searching