bolo17

DemoStack1 - CS - Program

May 9th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. // other way is to maintain a supporting stack with the top element the lowest
  2. DemoStack1 stack = new DemoStack1();
  3. stack.push(40);
  4. stack.push(30);
  5. stack.push(20);
  6. System.out.println("output = "+stack.arr1[stack.top1]);
  7.  
  8.  
  9. }
  10.  
  11. }
  12.  
  13. class DemoStack1
  14. {
  15. int MAXLEN = 9;
  16.  
  17. int arr[] = new int[MAXLEN];
  18. int arr1[] = new int[MAXLEN];
  19. download link:https://ouo.io/STB5n3
Add Comment
Please, Sign In to add comment