-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f2c1691
commit 3d807b7
Showing
1 changed file
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
Concepts of Stack Data Structure.\ | ||
LIFO - Last in First Out.\ | ||
Only the top of the stack is the entry and the exit point.\ | ||
LIFO - Last in First Out.\ | ||
Only the top of the stack is the entry and the exit point.\ | ||
<br/> | ||
Operations in Stack.\ | ||
Push - add element to the stack.\ | ||
Pop - remove element from the stack\ | ||
Peek - return the top element of the stack.\ | ||
isEmpty - Check whether the stack is empty or not.\ | ||
<br/> | ||
Application:\ | ||
Reverse of a string.\ | ||
Expression evaluation such as infix, prefix, postfix.\ | ||
Tower of Hanoi. | ||
|