Representation of Queue using Linked List
Algorithm:
Step 1: Create a structure with data and link field.
Step 2: Allocate a memory for the new node using a getnode().
Step 3: Insert the item into the queue
Step 4: Delete the node by releasing the memory of the node.
Step 5: create a function to retrieve the contents from the top of the queue.
Step 6: Display the contents of the queue by traversing through the queue.
Step 7: Stop the execution.
No comments:
Post a Comment