Thursday, December 6, 2007
Double Linked List
Posted by Janaki Narayanamma P at 1:33 AM 1 comments
Labels: delete an element from linked list, insert an element in to linked list, operations of linked list
Single Linked List
Posted by Janaki Narayanamma P at 12:41 AM 0 comments
Labels: delete an element from linked list, insert an element in to linked list, operations of linked list
Linked Lists
Posted by Janaki Narayanamma P at 12:38 AM 0 comments
Labels: linked list, operations of linked list, types of linked list
Circular Queue Data Structure
- In circular queue the last node is connected back to the first node to make a circle.
- Circular linked list fallow the First In First Out principle
- Elements are added at the rear end and the elements are deleted at front end of the queue
- Both the front and the rear pointers points to the beginning of the array.
- It is also called as “Ring buffer”.
- Items can inserted and deleted from a queue in O(1) time.
Posted by Janaki Narayanamma P at 12:30 AM 5 comments
Labels: add an element to queue, applicatoins of queue, delete an element from queue, operations of queue
DeQueue Data Structure
Posted by Janaki Narayanamma P at 12:27 AM 0 comments
Labels: add an element to queue, applicatoins of queue, delete an element from queue, operations of queue
Priority Queue
Posted by Janaki Narayanamma P at 12:24 AM 0 comments
Labels: add an element to queue, applicatoins of queue, delete an element from queue, operations of queue
Wednesday, December 5, 2007
Queue Data Structure
- Queue is a linear data structure
- it works on the principle First In First Out (FIFO).
- The first element insert into the queue is the first element to be delete
- Insertion can be done at rear end using rear pointer and deletions can be done at front end using front pointer
- It looks like open tube.
Posted by Janaki Narayanamma P at 11:46 PM 0 comments
Labels: add an element to queue, delete an element from queue, operations of queue
Applications of Stack Data Structure
Posted by Janaki Narayanamma P at 11:35 PM 0 comments
Classification of Data structures
Data structures can be classified as
· Simple data structure
· Compound data structure
· Linear data structure
· Non linear data structure
Posted by Janaki Narayanamma P at 11:19 PM 8 comments
Data Structure Definitions
Posted by Janaki Narayanamma P at 11:00 PM 0 comments
Labels: classification of data structure, define data structure, linear datastructures, non linear datastructures