Stack

I will show you how Stack algorithm look like...
and i will divide into two categories....
one use Array and other one use Node....

Array

Stack Algorithm:


Main program :



LinkedList :

Stack Algorithm :


Main program :





Sample Running :

Push 12 :
xxxxxx
|  12|
xxxxxx
Push 43 :
xxxxxx
|  43|
|  12|
xxxxxx
Push 9 :
xxxxxx
|   9|
|  43|
|  12|
xxxxxx
Pop :
xxxxxx
|  43|
|  12|
xxxxxx
Top : 43


you can test it by your self..
i hope you like this souce code...
and please give some comment....
                                                                                                                                                      Created By : Z-man, 2012



No comments:

Post a Comment