Lists Flashcards
What is a A container where data is stored in nodes consisting of a single data item and a reference to the next node?
Linked list
What is Linking together complex nodes into a single structure?
Linked List
What is a l list where we start at the first node and follow the chain of nodes iterating over each until we get to the end?
Singly Linked List
What is A list that builds on the singly linked list by adding reverse iteration.
Doubly Linked List
What is a doubly linked list where the values are inserted and sorted in orde
Sorted List
What is a data structure that stores ordered list of items in nodes, where each node stores data and has a pointer to the next node.
linked list
What is a data structure that stores an ordered list of items, with each item is directly accessible by a positional index
Array