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

Why is bubble sort stable?

647


What is advantage and disadvantage of linked list?

630


How is heap sort implemented?

644


What is a threaded binary tree? Explain its operation with example?

886


How do you find the index of an element in an arraylist?

620


Explain linked list in short.

666


What is the difference between hashset and linkedhashset?

709


How do you perform a merge sort?

644


Why is it called bubble sort?

683


What is the difference between hashset and hashmap?

716


Can we apply binary search algorithm to a sorted linked list, why?

707


What are the objectives of studying data structures?

869


How would you dynamically allocate a one-dimensional and two-dimensional array of integers?

766


How do I sort hashset?

699


Define tree edge?

685