Explain about the types of linked lists

Answers were Sorted based on User's Feedback



Explain about the types of linked lists..

Answer / angu

Singly linked list- which is linear direction that has only
head part.

Doubly linked list- which is bi-directional that has both
head and tail part

Circular linked list- which as no ends.

Is This Answer Correct ?    12 Yes 0 No

Explain about the types of linked lists..

Answer / 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

Explain about the types of linked lists..

Answer / touchriverian

singly LL
doubly LL
circular LL
doubly linked circular list

Is This Answer Correct ?    8 Yes 0 No

Explain about the types of linked lists..

Answer / deepak pareek

1.singly link list
2.circular LL
3.doubly circular LL
4.doubly LL

Is This Answer Correct ?    5 Yes 0 No

Explain about the types of linked lists..

Answer / yogesh l. sharma

there are main four type of linked list.
1)singly linked list.
2)singly circular linked list.
3)doubly linked list.
4)doubly circular linked list.

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More Data Structures Interview Questions

You want to insert a new item in a binary search tree. How would you do it?

0 Answers  


What is the difference between hashset and hashmap?

0 Answers  


What is sort order?

0 Answers  


When will you use array over arraylist?

0 Answers  


What are the types of algorithms?

0 Answers  


What is the prerequisite for binary searching?

0 Answers   Expedia,


What is the family trees and connection by clause?

0 Answers  


Does hashmap maintain insertion order?

0 Answers  


What is impact of signed numbers on the memory using data structures?

0 Answers  


What is meant by hashing?

0 Answers  


Explain about set and their types in a collection?

0 Answers  


Explain what are the major data structures used in the hierarchical data model?

0 Answers  


Categories