This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
notes:data:queue [2010/11/18 02:33] – created bwilson3 | notes:data:queue [2010/11/20 01:50] (current) – ccarpe10 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====queuecreate.cc==== | ||
+ | Constructor/ | ||
+ | |||
+ | |||
+ | ===Queue() constructor=== | ||
+ | |||
+ | <code c++> | ||
+ | </ | ||
+ | |||
+ | ^ Function | ||
+ | | Queue() | ||
+ | |||
+ | Queue() is the parameterless constructor that is responsible for creating a new instance of a queue. | ||
+ | |||
+ | ===Node(int) constructor=== | ||
+ | Overloaded constructor that will accept an initial integer value to be assigned to the newly allocated Queue' | ||
+ | |||
+ | <code c++> | ||
+ | </ | ||
+ | |||
+ | ^ Function | ||
+ | | Queue(int) | ||
+ | |||
+ | ===queueops.cc === | ||
+ | Operations that deal with queue manipulation | ||
+ | |||
+ | ===Queue:: | ||
+ | enqueue(int value) - add a value to the start of the queue | ||
+ | |||
+ | ^ Function | ||
+ | | bool enqueue() | ||
+ | |||
+ | ===Queue:: | ||
+ | dequeue() - remove a node (LNode) from the end of the queue | ||
+ | |||
+ | ^ Function | ||
+ | | LNode dequeue() | ||
+ | |||
+ | ===Queue:: | ||
+ | peek() - view the next value in the queue | ||
+ | |||
+ | ^ Function | ||
+ | | LNode * Queue :: peek(int value) | ||
+ | |||