Explain about the types of linked lists

Answer Posted / vignesh1988i

as for as i know this concept their are three linked lists
1)linear or simple linked lists
2)doubly linked lists
3)circular linked lists

SIMPLE LL :
this contains a node which has two parts, see that a node is a STRUCTURE.one is data and other one is a pointer which is called self referencial pointers, so we must make it to point to the next location of second node created dynamically

DOUBLY LL :
a node will consists of previous node address , a data & next node address which can move backwards to the very first address

Circular ll :
here we will have the node consists of same thing but defaulty when it finishes the last node aand come to the first node

Is This Answer Correct ?    12 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is merge sort better than quick?

487


How efficient is bubble sort?

503


How would you sort words in a large file?

551


What is bubble sort technique?

494


Why is quicksort so fast?

473






How many types of data structure are there?

454


Why sorting is used?

520


What are different types of sorting algorithms?

478


What is insertion sort technique?

481


What does the dummy header in the linked list contain?

746


What is a map in programming?

438


How many parts are there in a declaration statement using data structures?

477


What is map entry?

492


How do you assign an address to an element of a pointer array ?

506


What is difference between hashmap and map?

445