Thursday, May 15, 2008

Radix Sort

Program - Sorting using Radix Sort Method
Language - C
Topic - Data Structures using 'C'
Functions - Sort

Click on the upper left corner of the window below and scroll to read the program !!

Quick Sort

Program - Sorting using Quick Sort Method
Language - C
Topic - Data Structures using 'C'
Functions - Sort

Click on the upper left corner of the window below and scroll to read the program !!

Heap Sort

Program - Sorting using Heap Sort Method
Language - C
Topic - Data Structures using 'C'
Functions - Sort

Click on the upper left corner of the window below and scroll to read the program !!

Bubble Sort

Program - Bubble Sort on Array
Language - C
Topic - Data Structures using 'C'
Functions - Sort

Click on the upper left corner of the window below and scroll to read the program !!

Selection Sort

Program - Selection Sort on Array
Language - C
Topic - Data Structures using 'C'
Functions - Sort

Click on the upper left corner of the window below and scroll to read the program !!

Insertion Sort

Program - Insertion Sort on Array
Language - C
Topic - Data Structures using 'C'
Functions - Sort

Click on the upper left corner of the window below and scroll to read the program !!

Circluar Double Linked List

Program - Implementaion of Circular Double Linked List
Language - C
Topic - Data Structures using 'C'
Functions -
Insert at front
Insert at rear
Insert at a particular position
Delete from front
Delete from rear
Delete from a particular position
Delete an element having a certain value
Reverse the linked list
Display

Click on the upper left corner of the window below and scroll to read the program !!

Circular Single Linked List

Program - Implementaion of Circular Single Linked List
Language - C
Topic - Data Structures using 'C'
Functions -
Insert at front
Insert at rear
Insert at a particular position
Delete from front
Delete from rear
Delete from a particular position
Delete an element having a certain value
Reverse the linked list
Display

Click on the upper left corner of the window below and scroll to read the program !!

Double Linked List

Program - Implementaion of Double Linked List
Language - C
Topic - Data Structures using 'C'
Functions -
Insert at front
Insert at rear
Insert at a particular position
Delete from front
Delete from rear
Delete from a particular position
Delete an element having a certain value
Reverse the linked list
Display

Click on the upper left corner of the window below and scroll to read the program !!

Single Linked List

Program - Implementaion of Single Linked List
Language - C
Topic - Data Structures using 'C'
Functions -
Insert at front
Insert at rear
Insert at a particular position
Delete from front
Delete from rear
Delete from a particular position
Delete an element having a certain value
Reverse the linked list
Display

Click on the upper left corner of the window below and scroll to read the program !!

Linked List using Array

Program - Implementaion of Linked List using Arrays
Language - C
Topic - Data Structures using 'C'
Functions - Insert, Delete, Search, Display

Click on the upper left corner of the window below and scroll to read the program !!

Dequeue - Input/Output Restricted

Program - Implementaion of Input Restricted and Output REstricted Dequeue using Array
Language - C
Topic - Data Structures using 'C'
Functions - Insert at front, Insert at rear, Delete from front, Delete from rear
(For both Input / Output Restricted Dequeue)

Click on the upper left corner of the window below and scroll to read the program !!

Circular Queue using Linked List

Program - Implementaion of Circular Queue using Linked List
Language - C
Topic - Data Structures using 'C'
Functions - Insert, Delete, Display

Click on the upper left corner of the window below and scroll to read the program !!

Circular Queue using Array

Program - Implementaion of Circular Queue using Arrays
Language - C
Topic - Data Structures using 'C'
Functions - Insert, Delete, Display

Click on the upper left corner of the window below and scroll to read the program !!

Queue using Linked List

Program - Implementation of Queue using Linked List
Language - C
Topic - Data Structures using 'C'
Functions - Insert, Delete, Display

Click on the upper left corner of the window below and scroll to read the program !!

Queue using Arrays

Program - Queue Implementation using Arrays
Language - C
Topic - Data Structures using 'C'
Functions - Insert, Delete, Display

Click on the upper left corner of the window below and scroll to read the program !!

Wednesday, May 14, 2008

Infix to Postfix Conversion using Stacks

Program - Program for conversion of infix to postfix using Stacks and evaluation of postfix expression
Language - C
Topic - Data Structures using 'C'
Functions - Conversion of Infix to Postfix, Evaluation of Postfix expression

Click on the upper left corner of the window below and scroll to read the program !!

Stacks using Arrays

Program - Implementation of Stacks using Arrays
Language - C
Topic - Data Structures using 'C'
Functions - Display, Push, Pop

Click on the upper left corner of the window below and scroll to read the program !!

Tuesday, May 13, 2008

Stacks using Linked Lists

Program - Implementation of Stacks using Linked Lists
Language - C
Topic - Data Structures using 'C'
Functions - Display, Push, Pop

Click on the upper left corner of the window below and scroll to read the program !!

Array Implementation

Program - Implementation of Arrays
Language - C
Topic - Data Structures using 'C'
Functions - Create, Insert, Sort, Search, Display

Click on the upper left corner of the window below and scroll to read the program !!