Frage im Vorstellungsgespräch bei Infosys

Explain the functionality of linked list?

Antworten zu Vorstellungsgespräch

Anonym

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

Anonym

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

Anonym

8. Juli 2019

easly sequential retrieval of data

Anonym

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.