answersLogoWhite

0


Best Answer

Outside of academia I do not think linked list are important, a btree is important.

As for a real-world application, I do not recall one. I did use a linked list back in the days of the Apple 2/Commodore 64 but That was before hard drives (were affordable) and before I got my hands on btree source code.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the importances of linked list and its real-world application?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

Give atleast 5 real life examples of circular linked list?

Why do you think it is a question? It is a homework assignment.


How do you get C.B.S.E. duplicate mark list?

To get a duplicate mark list from the Central Board of Secondary Education (CBSE), you will need to follow these steps: File a complaint at the local police station if your original mark list has been lost or stolen. Obtain a copy of the FIR (First Information Report). Visit the CBSE regional office or official website and download the application form for obtaining a duplicate mark list. Fill out the application form and attach the necessary documents, including a copy of the FIR, along with the applicable fee. Submit the completed application form to the CBSE regional office either in person or by mail. Once your application is processed, you will receive the duplicate mark list through the specified method mentioned on the application form.


Can you list the application of laplace transforms in the field of computer science engineering?

Laplace is used to write algorithms for various programs. More info is available on wiki .


Answer for 98 pallendrom for math?

I needed the answer to the same question and found a list of numeric palindrome answers at the site I linked below. Specifically for 98, it is a 24-step problem with the answer of 8,813,200,023,188. And the answer is the same for 89 also in 24-steps.


What is one dimensional data storage?

One dimensional data storage is when you store a series of data in a linear way. An example of this would be an array, which stores data in a series, and access that data by indexing it. A linked list is another example of a data structure that behaves one dimensionaly.

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.


Mobile application of linked list'?

You may store received SMS's in a linked list:typedef struct RecvSMS {struct RecvSMS *next;PhoneNum from;time_t recvdate;char *text;} RecvSMS;


What is real world application for linked list?

Good question, it defies an answer because I do not have the text book that your teacher is posing questions from. Besides when you have a btree linked lists look kind of stupid.


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 is the c plus plus code for application of linked list in mobile phones?

If people started writing these codes here, then what software engineers will do?


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.


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


Which of the following data structures can be randomly accessed giving loc A. linked list implemented using array B. singly linked list C. double linked list D. both single and double linked list?

Which of the following data structures can be randomly accessed giving loc?A. linked list implemented using arrayB. singly linked listC. double linked listD. both single and double linked listThe answer is A.


How the pointer used in the linked list?

The pointer in linked list is used for traversing through the elements of the linked list. In a singly linked list, only a next pointer exits. So this pointer can be used for traversing only in one direction in the list. In case of a doubly linked list, a next and previous pointer exits. These pointers are used for traversing in both direction in the list.