Computer Science, asked by reharsha4, 1 month ago

What are the different notations used in a linked list.​

Answers

Answered by itzsmartyprince
3

Answer:

A linked list is represented by a pointer to the first node of the linked list. The first node is called the head. If the linked list is empty, then the value of the head is NULL.

A linked list is represented by a pointer to the first node of the linked list. The first node is called the head. If the linked list is empty, then the value of the head is NULL....

A linked list is represented by a pointer to the first node of the linked list. The first node is called the head. If the linked list is empty, then the value of the head is NULL....Random access is not allowed. ...

Extra memory space for a pointer is required with each element of the list.

Not cache friendly.

Similar questions