Please enable JavaScript.
Coggle requires JavaScript to display documents.
data structures (record (Different data types, mutable, static, pupil =…
data structures
record
Different data types
mutable
static
pupil = record {
name as string
age as integer
dob as date
}
pupil.name="John"
Tuple
Immutable( can not change the data)
static(fixed size)
different data types
pupil = ("John", 17, 3/1/2003)
name = [0]
arrays
1,2 and 3 Dimensions
Static
One data type
Static
List
Dynamic
One Data Type
Mutable
Queue
FIFO (First in first out)
.
Graph
Trees
Hash table
Stack
LIFO (last in first out)
Linked-list
Psuedocode for all data structure
Creating
Adding
Removing
Searching'