Sollicitatievraag bij Infosys

Explain the functionality of linked list?

Antwoorden op sollicitatievragen

Anoniem

28 nov 2018

Linked list is used to store the elements at any place in the line we can remove any element at any place in the list but it is not possible in arrays and que it is possible but it consumes lot of time and changing the positions

3

Anoniem

21 nov 2018

Linked list is a linear collection of data element,whose order is not given by their physical placement in memory.Instead,each element points to the next.It is a dada structure consisting of a collection of nodes which together represent a sequence.

2

Anoniem

8 jul 2019

easly sequential retrieval of data

Anoniem

24 okt 2018

Java linkedlist class uses doubly linked list to store the elements. It provides a linked list data structure. Java linkedlist class can contain duplicate elements. Java linkedlist class maintains insertion order.java linkedlist class is non synchronized. Java linkedlist class manipulation is fast because no shifting needs to be occurred.java linkedlist class can be used as list stack or queue.