Queue Using Linked List

Queue is an abstract data structure, somewhat similar to Stacks. Unlike stacks, a queue is open at both its ends. One end is always used to insert data(enqueue) and other end is used to remove data(dequeue)
Queue follows FIFO(First In First OUT) methedology

Developer: Anirudh TP
Licence: OpenSource
Platform/Language: C
Download

Popular posts from this blog

Two Level File Directory

Banker's Algorithm