Data Structures Flashcards

1
Q

What does the acronym LIFO mean?

A

Last in first out - The last thing pushed onto the stack is the first thing that can be popped out

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

What methods are available on a Stack data structure?

A
  • push(value) - adds a value to the “top” of the stack
  • pop() - removes the top value from the stack and returns it
  • peek(), which returns the “top” value of the stack without removing it.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What must you do to access the value at an arbitrary point in a stack (not just the “top”)?

A

You pop everything off until you get to where you want, and then you push everything back

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

What does the acronym FIFO mean?

A

first-in-first-out (FIFO) operations: the first thing enqueued onto the queue is the first thing that can be dequeued out.

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

What methods are available on a Queue data structure?

A
  • enqueue(value) - adds a value to the “back” of the queue
  • dequeue() - removes the “front” value from the queue and returns it
  • peek(), which returns the “front” value of the queue without removing it.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What must you do to access the value at an arbitrary point in a queue (not just the “front”)?

A

Dequeue everything until you get to where you want, and then enqueue those values back

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

How are linked lists different from an array?

A

Linked lists are sequential access (like a queue), not random access (like an array). That means that, in order to go to a specific place in the list, you have to start at the beginning, then jump from node to node until you get there. However, unlike a queue, a linked list doesn’t need to be mutated to scan its contents.

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

How would you access an arbitrary node in a linked list (not just the “head”)?

A

In a basic linked list, you start at the “head” node, then jump to the next node through the .next property. The last node in a basic linked list is called the “tail” node. The “list” itself is simply a reference to the “head” node. Since each node only contains a reference to the next node in the list, there is no way to backtrack. That means each node is the “head” of its own list, and there’s no way to tell if any other nodes came before it.*

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

What properties are available on linked lists?

A

.data - contains the node’s value.

.next a reference to the next node in the list, if there is one. If there is no “next” node in the list, this property is typically set to null.

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