Data Structures - Chapter 2: Queue
http://www.youtube.com/watch?v=XBuScARSmAQ&feature=channel&list=UL
queue is a first in first out data structure
enqueue() to add
dequeue() to delete
size() return the # of elements
isempty()
front()
selective removal is not possible with queue data structure
queue can be implemented by array or linked list
No comments:
Post a Comment