Tuesday 3 October 2017

Stack Data Structure

Stack is a linear data structure which follows a particular order in which the operations are performed. The order may be LIFO(Last In First Out) or FILO(First In Last Out).
Mainly the following three basic operations are performed in the stack:
  • Push: Adds an item in the stack. If the stack is full, then it is said to be an Overflow condition.
  • Pop: Removes an item from the stack. The items are popped in the reversed order in which they are pushed. If the stack is empty, then it is said to be an Underflow condition.
  • Peek or Top: Returns top element of stack.
  • isEmpty: Returns true if stack is empty, else fals.
stack
How to understand a stack practically?
There are many real life examples of stack. Consider the simple example of plates stacked over one another in canteen. The plate which is at the top is the first one to be removed, i.e. the plate which has been placed at the bottommost position remains in the stack for the longest period of time. So, it can be simply seen to follow LIFO/FILO order.
Time Complexities of operations on stack:
push(), pop(), esEmpty() and peek() all take O(1) time. We do not run any loop in any of these operations.
Applications of stack:
Implementation:
There are two ways to implement a stack:
  • Using array
  • Using linked list

------------

static void Main(string[] args)
        {
            MyStack myStack = new MyStack();
            myStack.Push(3);
            myStack.Push(5);
            myStack.Push(2);

            myStack.Push(6);

            Console.WriteLine(myStack.Pop());
            Console.WriteLine(myStack.Pop());
            Console.WriteLine(myStack.Pop());
            Console.WriteLine(myStack.Pop());
}

----------------------------


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication9
{
   public class MyStack
    {
       public const int max = 3;
        public int[] aStack= new int[max];

        int top;
        public void Push(int a)
        {
            if (top == max-1)
            {
                Console.WriteLine("stack is overflow");
            }
            else
            aStack[++top] = a;
        }

        public MyStack()
        {
            top = -1;
        }
        public int Pop()
        {
            if (top < 0)
            {
                Console.WriteLine("stack in underflow");
                return 0;
            }
            else { return aStack[top--]; }

            
        }




     }
}

No comments:

Post a Comment

Recent Post

Parallel Task in .Net 4.0