Skip to content

Commit b9e8a91

Browse files
committed
Update README.markdown
1 parent f254f1e commit b9e8a91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Stack/README.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Stack is an abstract data type that serves as a collection of elements, with two principal operations: push, which adds an element to the collection, and pop, which removes the most recently added element that was not yet removed. The order in which elements come off a stack gives rise to its alternative name, LIFO (for last in, first out). Additionally, a peek operation may give access to the top without modifying the stack.
44

5-
![](https://github.com/gazolla/Kotlin-Algorithm/tree/master/Stack/Lifo_stack.png)
5+
![](https://github.com/gazolla/Kotlin-Algorithm/blob/master/Stack/Lifo_stack.png)
66

77
## The code
88

0 commit comments

Comments
 (0)