Posts

Showing posts from April, 2016

Stack using Interface in Java

import java.util.*; interface Stk {   void push(int g);   int pop();   boolean isempty();   boolean isfull();   int peek();   void disp(); }; class MyStack implements Stk {   int ar[];   int top;   MyStack(int p)    {     ar=new int[p];     top=-1;    }   public void push(int g)    {     ar[++top]=g;    }   public int pop()    {     int t;     t=ar[top--];     return t;    }   public int peek()    {     int t;     t=ar[top];     return t;    }   public boolean isfull()    {     if(top==ar.length)      return true;     else      return false;    }   public boolean isempty()    {     if(top==-1)     ...