Algorithm for ENQUEUE and DEQUEUE in hindi

Algorithm of Enqueue in hindi:- Queue में किसी item या element को add करने के लिए निम्नलिखित एल्गोरिथ्म का प्रयोग किया जाता है:- Fig:-Enqueue algorithm Algorithm of Dequeue in hindi:- Queue में किसी item को remove करने के लिए निम्नलिखित एल्गोरिथ्म का प्रयोग किया जाता है:- Fig:-Dequeue algorithm निवेदन:-अगर आपका किसी computer से सम्बंधित subjects … Read more

Types of Queue in hindi

Hello दोस्तों! आज हम इस पोस्ट में Types of Queue in Data Structure in Hindi (डाटा स्ट्रक्चर में queue के प्रकार) के बारें में पढेंगे. इसे आप पूरा पढ़िए, आपको यह आसानी से समझ में आ जायेगा. तो चलिए शुरू करते हैं:- टॉपिक1 Types of Queue in Hindi2 Linear Queue 3 Circular queue in Hindi4 Priority … Read more

Queue in Data Structure in Hindi – डाटा स्ट्रक्चर में Queue क्या है?

Hello दोस्तों! आज हम इस पोस्ट में Queue in Data Structure in Hindi (डाटा स्ट्रक्चर में queue क्या है?) के बारें में पढेंगे और इसके Types और Operations को भी देखेंगे. इसे आप पूरा पढ़िए, आपको यह आसानी से समझ में आ जायेगा. तो चलिए शुरू करते हैं:- टॉपिक1 Data Structure Queue in Hindi2 Operations … Read more

What is graph in hindi and types of graph in hindi

data structure Graph in hindi:- data structure graph को हम निम्न बिंदुओं के आधार पर आसानी से समझ सकते है:- 1:- ग्राफ एक non-primitive, नॉन-लीनियर डेटा स्ट्रक्चर होता है। 2:- ग्राफ एक vertex(node) का समूह होता है। एक vertex दूसरे vertex के साथ जुड़ा रहता है और दो vertex के मध्य connection को हम edge … Read more

Stack in Data Structure in Hindi – स्टैक क्या है?

Hello दोस्तों! आज हम इस पोस्ट में Stack in Data Structure in Hindi (डाटा स्ट्रक्चर में स्टैक क्या है?) के बारें में पढेंगे और इसके operations तथा advantages के बारें में भी देखेंगे. इसे आप पूरा पढ़िए, यह आपको आसानी से समझ में आ जायेगा. तो चलिए शुरू करते हैं:- टॉपिक1 Data Structure Stack in … Read more

What is linked list in hindi?

Linked list in hindi:- Linked list एक non-primitive, linear डेटा स्ट्रक्चर है। linked list, नोड्स के समूह से मिलकर बना होता है। प्रत्येक node के दो भाग होते है पहला भाग data का होता है और दूसरा pointer होता है। linked list का pointer भाग अगले node के address को hold किये रहता है। nodes … Read more

Applications of binary trees in hindi

application of binary tree in hindi:- 1:-बाइनरी सर्च ट्री का प्रयोग बहुत सारीं सर्च applications में किया जाता है। 2:- Binary Space Partition का प्रयोग आजकल प्रत्येक 3D गेम्स के लिए किया जाता है। 3:-बाइनरी tries का प्रयोग प्रत्येक हाई बैंडविड्थ राऊटर में किया जाता है जो कि राऊटर टेबल्स को स्टोर करता है। 4:-Heaps … Read more

Height balanced tree or AVL TREE in hindi

Height balanced tree or AVL TREE in hindi:- AVL TREE एक self balancing binary search tree होती है। AVL TREE को height balanced tree भी कहा जाता है। AVL TREE का नाम इसके inventors( Georgy Adelson-Velsky और Evgenii Landis ) के कारण पड़ा। AVL TREE का प्रयोग डेटा को organise करने के लिए किया जाता … Read more

B-tree in hindi

B-Tree in hindi:- B-tree एकM-Way(multi-way) tree होता है जो कि विशेषकर disk में प्रयोग करने के लिए बनाया जाता है। B-tree को balanced tree कहा जाता है। एक M-way tree के M children हो सकते है। M-way tree एक node में multiple keys को contain कर सकती है। यदि M-way tree का एक नोड keys … Read more

Threaded binary tree in hindi

Threaded binary tree in hindi:- वह binary tree जिसमें वह प्रत्येक node जिसका कोई child नही होता है उसको पॉइंटर replace कर देता है जिसे हम thread कहते है। binary tree के representation में leaf node भी होते है जिनमें null value होती है। जिनके कारण memory का waste होता है इसलिए memory wastage के … Read more