A deque is a data structure that allows both deletion as well as insertion of elements to be done at both ends. Here’s a handy C program to implement deque using linked list.
Archive | Linked Lists RSS feed for this section
Car Garage Simulation Using De-Queue
August 30, 2010
Here’s an amazing C program that implements a car parking system. Problem Statement: Suppose Fundu Parking Garage contains 10 parking lanes, each with a capacity to hold 10 cars at a time. As each car arrives/departs, the values A/D (representing arrival /departure) is entered along with the car registration number. If a car is departing [...]
How to Create Linked List of Numbers In Sorted Order
August 11, 2010
C program to create a linked list of numbers in sorted (ascending) order and then to delete some specified elements from the list.
How to Simulate a Dictionary Using Linked List
August 9, 2010
Write a program to simulate a dictionary using linked list. It should be a menu driven program with the options for adding a word and its meanings, searching a word and displaying the dictionary. Steps to develop the program are as given below:
How to Implement Stack with Linked List
June 16, 2010
C Program that implements stack with linked list.

August 31, 2010
0 Comments