Skip to content

Commit dce6898

Browse files
authored
Merge pull request #1 from codepath/bzsinger-edits
Edit Stacks and Queues guide
2 parents 634e87b + eaa63bc commit dce6898

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

stacks_queues/stacks_queues.md

+15-16
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,48 @@
11
## Introduction
22

3-
Stacks and queues are foundational data structures that are useful when adding and removing in particular orders. It's important to be comfortable with these two data structures.
3+
Stacks and queues are foundational data structures that are useful for problems that rely on adding and removing elements in a particular order. It's important to be comfortable with these two data structures.
44

55
## Stacks
6-
A **stack** is a data structure that stores objects in which the most recently stored objects are the first ones to be removed, (LIFO: last in, first out). An example to help you remember the mechanics of a stack is to associate it with stacks in real life. With a stack of plates, the plates that are placed on top of a stack will be the first ones that are removed from the top!
6+
A **stack** stores objects such that the most recently added objects are the first ones to be removed (LIFO: last in, first out). An example to help you remember the mechanics of a stack is to associate it with stacks in real life. In a stack of plates, the ones placed on top will be the first ones removed!
77

88
![](https://i.imgur.com/qMSmxsa.png)
99

1010
It's important to know the common operations of a stack. The two key stack operations are:
11-
1) pop(): removing an item from the stack in a last in, first out order (LIFO)
12-
2) push(item): adding an item to the stack
11+
1. pop(): removing an item from the stack in last in, first out order (LIFO)
12+
2. push(item): adding an item (to the top of the stack)
1313

1414

1515
## Queues
16-
A **queue** is a data structure that stores objects in which the most stored objects are the first ones to be removed. A helpful acronym associated with queues is FIFO, first in first out. An example to help you remember the mechanics of a queue is to associate it with queues in real life. With a queue of people waiting to get a seat in a restaurant, the first people to get in the queue will be the first people seated at that restaurant.
16+
A **queue** stores objects such that the objects added earliest are the first ones to be removed (FIFO: first in first out). An example to help you remember the mechanics of a queue is to associate it with queues in real life. In a queue of people waiting to get a seat in a restaurant, the first people in line (in the queue) will be the first to get a table.
1717

1818
![](https://i.imgur.com/NKuZd0s.png)
1919

2020
It's important to know the common operations associated with a queue. The two important queue operations are:
21-
1) dequeue(): removing an item from the queue in a first in, first out order (FIFO)
22-
2) enqueue(item): adding an item to the queue
21+
1. dequeue(): removing an item from the queue in first in, first out order (FIFO)
22+
2. enqueue(item): adding an item (to the back of the queue)
2323

2424
## Key takeaways
25-
* Stacks are very useful for it's backtracking features. For example, parsing questions tend to use stacks because of the LIFO property.
25+
* Stacks are very useful for their backtracking features. For example, parsing questions tend to use stacks because of their LIFO property.
2626
* Stacks can be used to implement recursive solutions iteratively.
27-
* Queues are useful when the ordering of the data matters as it preserves that ordering. For example, they're used for caching.
27+
* Queues are useful when the ordering of the data matters because they preserve the original ordering. For example, queues are used for caching.
2828

2929
## Example problems
30-
* Stacks:
30+
* Stacks:
3131
* [Implement a queue with stacks](https://leetcode.com/problems/implement-queue-using-stacks/description/)
3232

3333
* Queues:
3434
* [LRU Cache](https://leetcode.com/problems/lru-cache/)
3535

3636
## Resources
3737
### Guides
38-
* [Overview of stacks & queues with applications](https://www.cs.cmu.edu/~adamchik/15-121/lectures/Stacks%20and%20Queues/Stacks%20and%20Queues.html)
39-
* [In depth stacks guide](https://medium.com/basecs/stacks-and-overflows-dbcf7854dc67)
40-
* [In depth queues guide](https://medium.com/basecs/to-queue-or-not-to-queue-2653bcde5b04)
38+
* [Overview of stacks and queues with applications](https://www.cs.cmu.edu/~adamchik/15-121/lectures/Stacks%20and%20Queues/Stacks%20and%20Queues.html)
39+
* [In-depth stacks guide](https://medium.com/basecs/stacks-and-overflows-dbcf7854dc67)
40+
* [In-depth queues guide](https://medium.com/basecs/to-queue-or-not-to-queue-2653bcde5b04)
4141

4242
### Libraries
43-
* [Java queue library](https://docs.oracle.com/javase/7/docs/api/java/util/Queue.html)
44-
* [Java stack library](
43+
* [Java Queue library](https://docs.oracle.com/javase/7/docs/api/java/util/Queue.html)
44+
* [Java Stack library](
4545
https://docs.oracle.com/javase/7/docs/api/java/util/Stack.html)
4646
* [Python queue library](
4747
https://docs.python.org/2/tutorial/datastructures.html#using-lists-as-queues)
4848
* [Python stack library](https://docs.python.org/2/tutorial/datastructures.html#using-lists-as-stacks)
49-

0 commit comments

Comments
 (0)