-->

Friday, 10 March 2017

Push Operation

In case of stack Insertion of any item in stack is called push. In stack any item is inserted from top of the stack, When you insert any item in stack top will be increased by 1.
stack

Algorithm for push

  1. Initialization, set top=-1
  2. Repeat step 3 to 5 until top<Max size-1
  3. Read, item
  4. Set top=top+1
  5. Set stack[top]=item
  6. Print "stack overflow"

Example of push item in stack

 
  void push()
  {
   int item;
  if(top==size-1)
  {
  printf("\n stack is full");
  }
  else
  {
  top=top+1;
  printf("\n\n Enter element in stack: ");
  scanf("%d",&s.item);
  s.stack[top]=s.item;
  }
  }

keep calm and say bujuku bujuku.

0 comments:

Post a Comment

Start Work With Me

Contact Us
KUTTY SELVA
+91 7708139984
Madurai,Tamilnadu