Computer Science, asked by talhacry4, 4 months ago

how to check underflow in linked list?

Answers

Answered by aratrikaghosh12
1

Answer:

Underflow is a condition that occurs when we try to delete a node from a linked list that is empty. This happens when START = NULL or when there are no more nodes to delete. Note that when we delete a node from a linked list, we actually have to free the memory occupied by that node.

Similar questions