Applications of Linked List (लिंक्ड लिस्ट के अनुप्रयोग )

 Applications of Linked List are as follows:-

लिंक्ड लिस्ट के अनुप्रयोग निम्न है:- 

1. With the help of linked list we can easily implement dynamic stack and dynamic queues.  

लिंक्ड लिस्ट की सहायता से हम डायनामिक स्टैक और डायनामिक क्यू आसानी से तैयार कर सकते है।

2. Linked lists are used to represent Tree and Graph data structures.  

ट्री एवं ग्राफ डाटा स्ट्रक्चर को लिंक्ड लिस्ट द्वारा प्रदर्शित किया जाता है।

3. Linked lists are used for dynamic memory allocation which utilizes computer memory.

लिंक्ड लिस्ट का प्रयोग डायनामिक मेमोरी एलोकेशन के लिए किया जाता है, जिससे कंप्यूटर की मेमोरी का प्रभावी उपयोग होता है। 

4. Linked lists are used to represent Sparse matrix in memory.

लिंक्ड लिस्ट का प्रयोग स्पार्स मैट्रिक्स को प्रदर्शित करने के लिए किया जाता है।

5. OS uses linked list for process management and memory management services. 

ऑपरेटिंग सिस्टम में प्रोसेस मैनेजमेंट एवं मेमोरी मैनेजमेंट के अंतर्गत लिंक्ड लिस्ट का प्रयोग किया जाता है।

6. Addition of two polynomials and josephus problem etc are solved through linked list data structure.   पालीनोमिअल का जोड़ एवं जोसेफस समस्या इत्यादि को हल करने के लिए लिंक्ड लिस्ट का प्रयोग किया जाता है।




No comments:

Post a Comment

Stack Data Structure, Push, Pop and Peek Operations , Applications of Stack

Stack is a linear data structure. It is collection of ordered data elements. It is also known as LIFO system (last in first out). It means i...