CS Electrical And Electronics
@cselectricalandelectronics

What is linked list in data structure?

All QuestionsCategory: Data StructureWhat is linked list in data structure?
chetan shidling asked 4 years ago

I need short information.

1 Answers
Chetan Shidling answered 4 years ago

we can observe a linked list in which each node holds two parts, a data location and a pointer to the next node. The left portion of the node which holds data may include a simple data type, an array, or a structure. The right portion of the node contains a pointer to the next node (or address of the next node in order).