Computer Science, asked by asifit7456, 2 months ago

what is linked list ​

Answers

Answered by kusumborgohain9395
0

Answer:

A linked list is a common data structure made of a chain of nodes in which each node contains a value and a pointer to the next node in the chain.

The head pointer points to the first node, and the last element of the list points to null. When the list is empty, the head pointer points to null.

Similar questions