Pregunta de entrevista de Infosys

Explain the functionality of linked list?

Respuestas de entrevistas

Anónimo

28 de nov de 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

Anónimo

21 de nov de 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

Anónimo

8 de jul de 2019

easly sequential retrieval of data

Anónimo

24 de oct de 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.