Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mefreanzy authored Aug 14, 2023
1 parent 24a1619 commit d2565f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# RustyDSA

### [Stack](./data_structure/stack.rs)
### [Stack](./src/data_structure/stack.rs)
A stack is a linear data structure that follows the Last-In-First-Out (LIFO) principle.
Elements are added and removed from the top, or "topmost" end of the stack. It operates like a collection of items stacked on top of each other, where the last item added is the first to be removed.
Stacks are used in various applications, such as managing function calls in programming, tracking navigation history, and implementing undo operations.
Common operations on a stack include push (adding an element), pop (removing the top element), and peek (viewing the top element without removal).

* [Wikipedia](https://en.wikipedia.org/wiki/Stack_(abstract_data_type)
* [Wikipedia](https://en.wikipedia.org/wiki/Stack_(abstract_data_type))

0 comments on commit d2565f5

Please sign in to comment.