What is the underflow and overflow condition of linked list?
Answers
Answered by
4
☆☞ Here is ur answer ☜☆
✔✔ The situation where an integer outside the allowed range requires more bits than can be stored is called an overflow.
✔️✔️ Similarly, with real numbers, an exponent that is too small to be stored causes an underflow.
✔️✔️ Header link list : A header linked list is a linked list which always contains a special node, called the header node, at the beginning of the list.
HOPE IT HELPS!
Answered by
0
A linked list is one where the collection of data elements called nodes is given by means of pointers.
Overflow in a linked list is a situation when new data is to be inserted into a data structure, but no space is available for the same.
Underflow refers to the situation when one wants to delete data from a data structure that is empty.
Similar questions