What is linked list with example?



What is linked list with example?..

Answer / Kirti Raman

A linked list is a linear data structure where each element, called a node, consists of a data part and a reference (link) to the next node in the sequence. Here is an example of a simple linked list:nn```n1 -> 2 -> 3 -> NULLn```

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Data Structures Interview Questions

What are linked lists most commonly used for?

1 Answers  


Can we give size to arraylist?

1 Answers  


If you have to store one lakh objects, what will be a better option- a hash map or an array list?

1 Answers   DELL,


What is difference between linear and non linear data structure?

1 Answers  


Where is insertion sort used?

1 Answers  


What is bubble sort technique?

1 Answers  


How do stacks work?

1 Answers  


How is the front of the queue calculated in data structure?

1 Answers  


What are sorting algorithms used for?

1 Answers  


Tell me what is quick sort?

1 Answers  


What is heap tree explain with example?

1 Answers  


What are the disadvantages array implementations of linked list?

1 Answers  


Categories