queue in data structure in hindi, queue in hindi
-
- Queue in Data Structure in Hindi,
- Applications of Queue in Hindi,
- Complexity in Hindi,
Contents
show
Queue in Data Structure in Hindi
- एक कतार को एक ordered (क्रम) सूची के रूप में परिभाषित किया जा सकता है जो एक छोर (end) पर insert operations को सक्षम करता है जिसे REAT कहते है और दूसरे छोर (end) पर delete operations को सक्षम करता है जिसे FRONT कहते है।
- Queue को First In First Out list के रूप में संदर्भित किया जाता है।
- उदाहरण के लिए, rail ticket के लिए लाइन में इंतजार कर रहे लोग कतार (queue) बनाते हैं।
Applications of Queue in Hindi
इस तथ्य के कारण कि कतार First in first out (पहले अंदर पहले बाहर) bases पर कार्य करती है जो actions के क्रम के लिए काफी उचित है। नीचे discussed queues के विभिन्न applications हैं।
- Queues (कतारें) व्यापक (widely) रूप से printer, disk, CPU जैसे single shared resource की waiting lists के रूप में उपयोग की जाती हैं।
- उदाहरण के लिए डेटा के अतुल्यकालिक (asynchronous) transfer (जहाँ डेटा को same rate पर transfer नहीं किया जा रहा है) में queues का उपयोग किया जाता है। pipes, file IO, sockets.
- अधिकांश applications में MP3 मीडिया प्लेयर, CD प्लेयर आदि में buffers के रूप में उपयोग किया जाता है।
- play-list से गाने जोड़ने और हटाने के लिए media players में play list को बनाए रखने के लिए queues का उपयोग किया जाता है।
- Interrupts को संभालने के लिए Operating systems में queues का उपयोग किया जाता है।