Word: Linked List
Meaning: संयोजित सूची
Pronunciation: लिंक्ड लिस्ट
Short Description:
English: A linked list is a linear data structure where elements (nodes) are linked using pointers.
Hindi: एक संयोजित सूची एक रैखिक डाटा संरचना है जिसमें तत्व (नोड) पॉइंटर्स के माध्यम से जुड़े होते हैं।
Examples of ‘Linked List’ in Sentences:
# | English Sentence | Hindi Translation |
---|---|---|
1 | A linked list consists of nodes connected by pointers. | एक लिंक्ड लिस्ट में नोड्स पॉइंटर्स द्वारा जुड़े होते हैं। |
2 | Unlike arrays, linked lists use dynamic memory allocation. | सरणियों के विपरीत, लिंक्ड लिस्ट गतिशील मेमोरी आवंटन का उपयोग करती है। |
3 | Each node in a linked list contains data and a reference. | लिंक्ड लिस्ट में प्रत्येक नोड डेटा और एक संदर्भ (रेफरेंस) रखता है। |
4 | There are different types of linked lists, like singly and doubly linked lists. | लिंक्ड लिस्ट के विभिन्न प्रकार होते हैं, जैसे कि एकल और द्विपक्षीय लिंक्ड लिस्ट। |
5 | The head node is the starting point of a linked list. | हेड नोड लिंक्ड लिस्ट का प्रारंभिक बिंदु होता है। |
6 | Insertion in a linked list is more efficient than in an array. | लिंक्ड लिस्ट में तत्व जोड़ना सरणी की तुलना में अधिक कुशल होता है। |
7 | A linked list does not require contiguous memory blocks. | एक लिंक्ड लिस्ट को सतत मेमोरी ब्लॉक्स की आवश्यकता नहीं होती। |
8 | Deleting an element in a linked list is faster than in an array. | लिंक्ड लिस्ट में तत्व को हटाना सरणी की तुलना में तेज़ होता है। |
9 | Linked lists are used to implement stacks and queues. | लिंक्ड लिस्ट का उपयोग स्टैक और कतार (क्यू) बनाने में किया जाता है। |
10 | Circular linked lists are useful in scheduling algorithms. | परिपत्र लिंक्ड लिस्ट का उपयोग शेड्यूलिंग एल्गोरिदम में किया जाता है। |
Short Story Using ‘Linked List’
Amit was designing a phonebook app but faced difficulty in managing contacts dynamically. Then, he used a linked list to store contacts, making insertion and deletion much easier. His app became more efficient!
0 - 0