Monday, August 19, 2013

Queue

Queue
A data structure into which elements can be sequentially inserted and retrieved  in a first-in-first-out mode (FIFO). It needs two pointers, one for the queue tail(back) for inserting and other for queue head(front) for deletion(read and point to next element)..

No comments:

Post a Comment