answersLogoWhite

0


Best Answer

1.Sparse matrix representation 2. polynomial manipulation 3.dyanamic memory storage 4.in symbol table

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the applications of linked list?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Convert single linked list to double linked list?

You copy a singly linked list into a doubly linked list by iterating over the singly linked list and, for each element, calling the doubly linked list insert function.


What is the difference between doubly linked list and circular linked list?

A doubly linked list allows traversal in both directions (forward and backward) by having each node point to both its next and previous nodes. A circular linked list is a type of linked list where the last node points back to the first node, forming a circular structure. This allows continuous traversal through the elements without a definitive end.


Which is the easy insertion operator single linked-list or double-linked list?

It is easier to insert into a singly linked list.


What is the difference between linked list and Ordinary list?

A list is an abstract data structure, usually defined as an ordered collection of data. A linked list refers to a specific implementation of a list in which each element in the list is connected (linked) to the next element.


What is non-integer linked list?

Linked list of strings, for example.


What are the various applications of linked list and how it is differ from array as a data structure?

Linked lists can be expanded or reduced in size at any time in response to the needs of the program.Arrays are fixed in size when initially allocated and cannot change.


Application of linked list?

what are the main applications of double linked list? 1. Applications that have an MRU list (a linked list of file names) 2. The cache in your browser that allows you to hit the BACK button (a linked list of URLs) 3. Undo functionality in Photoshop or Word (a linked list of state) 4. A stack, hash table, and binary tree can be implemented using a doubly linked list. 5. A great way to represent a deck of cards in a game.


What other applications can link with Excel?

Any of the Microsoft applications, like Word, Access, Powerpoint etc. can be linked to Excel. Other spreadsheet and database applications in particular can link to it.Any of the Microsoft applications, like Word, Access, Powerpoint etc. can be linked to Excel. Other spreadsheet and database applications in particular can link to it.Any of the Microsoft applications, like Word, Access, Powerpoint etc. can be linked to Excel. Other spreadsheet and database applications in particular can link to it.Any of the Microsoft applications, like Word, Access, Powerpoint etc. can be linked to Excel. Other spreadsheet and database applications in particular can link to it.Any of the Microsoft applications, like Word, Access, Powerpoint etc. can be linked to Excel. Other spreadsheet and database applications in particular can link to it.Any of the Microsoft applications, like Word, Access, Powerpoint etc. can be linked to Excel. Other spreadsheet and database applications in particular can link to it.Any of the Microsoft applications, like Word, Access, Powerpoint etc. can be linked to Excel. Other spreadsheet and database applications in particular can link to it.Any of the Microsoft applications, like Word, Access, Powerpoint etc. can be linked to Excel. Other spreadsheet and database applications in particular can link to it.Any of the Microsoft applications, like Word, Access, Powerpoint etc. can be linked to Excel. Other spreadsheet and database applications in particular can link to it.Any of the Microsoft applications, like Word, Access, Powerpoint etc. can be linked to Excel. Other spreadsheet and database applications in particular can link to it.Any of the Microsoft applications, like Word, Access, Powerpoint etc. can be linked to Excel. Other spreadsheet and database applications in particular can link to it.


what are the various operations in linked list which can be performed on linked list?

Some common operations that can be performed on a linked list include inserting a node, deleting a node, searching for a specific node, traversing the list, and updating a node's value. Other operations may include reversing the list, merging two lists, sorting the list, and finding the length of the list.


What is difference between linked list and singly linked list?

Answersingly linked list has the node inserted only at one end. and the pointer corresponds to the next pointer.but in a doubly linked list, the node pointer points to the both previous and the next node.singly linked list has two nodesdoubly linked list has three nodesA doubly linked list makes sense when you need to traverse the list in both directions. You aren't able to do that with a singly linked list.


Where linked list using?

linked list are used for creation of stack,queues to use memory in optimum manner linked list are used as they are dynamic in nature


What is heterogeneous linked list?

A heterogeneous linked list is a data structure where each node can store data of different types. This allows for a flexible way to organize and manipulate data that may vary in structure or content. Each node contains a pointer to the next node in the list, enabling traversal and manipulation of the data.