Lists Flashcards

1
Q

What is a A container where data is stored in nodes consisting of a single data item and a reference to the next node?

A

Linked list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Linking together complex nodes into a single structure?

A

Linked List

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

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?

A

Singly Linked List

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is A list that builds on the singly linked list by adding reverse iteration.

A

Doubly Linked List

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a doubly linked list where the values are inserted and sorted in orde

A

Sorted List

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

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.

A

linked list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a data structure that stores an ordered list of items, with each item is directly accessible by a positional index

A

Array

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly