PDA

View Full Version : Stack and Queue (ADT) Plugin


nrgyzer
07-28-2009, 06:59 AM
With this plugin you can create a stack or a queue and insert or remove values from it.

Copy the content of the zip-file into ..\Plugins\Actions.

After activation you can use the following functions:

-> Stack.Create()
-> Stack.GetSize()
-> Stack.isEmpty()
-> Stack.Peek()
-> Stack.Pop()
-> Stack.Push()

-> Queue.Create()
-> Queue.GetSize()
-> Queue.isEmpty()
-> Queue.Peek()
-> Queue.Pop()
-> Queue.Push()

have fun by using this plugin ;)