answersLogoWhite

0

In linked list if there is no any element inside it than we can say linked list is underflow.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What advantages of a sorted list over a linked list?

All lists are linked lists; there is no such thing as a separate "sorted list". There are algorithms that can sort a list, of course, but they all work on linked lists.


What is binary linked list?

There is no such thing. There are binary trees and linked lists.


Why an operation to check queue overflow is not implemented on linked queue?

In linked queue we're dynamically allocating the memory and there's no fixed memory limit in Linked Queue. That's why there's no operation for overflow. I guess It's the correct reason


How can we represent polynomials using linked lists?

30


Is there a c program to multiply two polynomials using linked lists?

yes


What is a MET?

The website linked below lists 49 different meanings for MET.


What is a linked list used for?

A linked list is used in computer science to store data as a series of related nodes. Linked lists are used as the basis for abstract data types when programming. The chief advantage of a linked list is that data can be added or removed from the list without having to reorganize the whole list. A drawback to linked lists can be that it is difficult to sort, organize, or recall specific information from the list.


What Linked list uses.type of memory allocation?

Linked lists use dynamic memory allocation (also called "heap memory allocation", as the linked list is stored in heap memory).


What are the applications of structures?

Data structures could be used to implement an efficient database. Linked lists for example will optimize insertion and deletion for ordered lists.


What are the best ways to prevent water damage caused by a bathtub overflow, including the installation and maintenance of a bathtub overflow cover?

To prevent water damage from a bathtub overflow, ensure the overflow drain is clear and functioning properly. Install a bathtub overflow cover to help contain water in case of overflow. Regularly check and maintain the cover to ensure it is in good condition and functioning effectively.


What are the applications data structure?

Data structures could be used to implement an efficient database. Linked lists for example will optimize insertion and deletion for ordered lists.


How do you solve josephus problem using circular linked list?

The Josephus problem is a problem to locate the place for the last survivour. It shows the power of the circular linked list over the singly linked lists.