De-queue and linked list -
De-queue and linked list -
i want know de-queue is? same linked list? if yes then,
is "de-queue can represented linked list" ? or de-queue "singly linked list" or "double linked list" (like alias of them)??
de-queue double-ended queue. in queue have 2 basic operations:
1. add together element @ end of queue 2. remove element start of queue.
de-queue supports total 4 basic operations:
1. add together element @ start. 2. remove element start. 3. add together element @ end. 4. remove element end.
of course of study can add together other functionality getting value of first or lastly element without removing etc. can implement de-queue using info construction efficient implementations done using dyanmic array or doubly linked list. more details follow link http://en.wikipedia.org/wiki/double-ended_queue
linked-list queue
Comments
Post a Comment