Please enable JavaScript.
Coggle requires JavaScript to display documents.
LISTS, STACKS, QUEUES - Coggle Diagram
LISTS, STACKS, QUEUES
A list is essentialy an ordered sequence of data itens ( ordered not by value, simply a sequence )
-
-
The book contains tons of different commands of c++ for lists, so review page 97
Array based
Comparison beetwen both
Array-based lists have a limit predetermined of their size, thats 1x0 to linked lists, but they dont waste size, so 1x1
-
-
1º of all we are talking about data types, what they are and how can we give them meaning
-
A doubly linked list allows convenient
access from a list node to the next node and also to the preceding node on the list.
-