Tag: Stack
Stack implementation with array
Posted by M. Saqib | Sep 28, 2008 | Java: Java Programming Concepts |
This java code basically implements stack functionality. It can Pop and Push an item in stack with the help of array. The item can only be an integer number and inernally the java program uses arrays to maintain items in stack....
Read MoreStack Implementation in C
Posted by M. Saqib | Sep 19, 2008 | Utility Programs and Applications |
This is a C program that simulates stack operations graphically and in text mode. The program uses...
Read MoreUsing Templates to implement Stack
Posted by M. Saqib | Sep 9, 2008 | C++ Source Code: C++ Programming Concepts |