Archive | Linked Lists RSS feed for this section

Program On Deque That Implements A Linked List

August 31, 2010

0 Comments

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.

Continue reading...

Car Garage Simulation Using De-Queue

August 30, 2010

0 Comments

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 [...]

Continue reading...

How to Create Linked List of Numbers In Sorted Order

August 11, 2010

0 Comments

C program to create a linked list of numbers in sorted (ascending) order and then to delete some specified elements from the list.

Continue reading...

How to Simulate a Dictionary Using Linked List

August 9, 2010

0 Comments

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:

Continue reading...

How to Implement Stack with Linked List

June 16, 2010

0 Comments

C Program that implements stack with linked list.

Continue reading...