You need to implement Stack using Linked List. You need to write push and
    pop methods to demonstrate Stack behavior(Last In First Out).
    In this program, we will see how to implement stack using Linked List in java.
The Stack is an abstract data type that demonstrates Last in first out (LIFO) behavior. We will implement the same behavior using Linked List.
There are two most important
    operations of Stack:
  
- 
      Push: We will push element to beginning of linked list to demonstrate push behavior of stack.
- 
      Pop: We will remove first element of linked list to demonstrate pop behavior of Stack .
Java Program:
    Let's create a java program to create a stack using Linked List.
  
  

 
 
