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

Binary tree in hindi

binary tree in hindi:- Data structure में, Binary tree वह tree है जिसमें प्रत्येक node के केवल अधिकतम दो children होते है। जिन्हें left child और right child कहा जाता है। जो root node होता है वह सबसे ऊपरी node होता है। जब tree में एक भी node नही होता है उसे हम empty tree … Read more

डेटा स्ट्रक्चर में Tree क्या है और इसके types क्या है?

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

Binary tree traversal in hindi

Binary tree traversal in hindi:- Binary tree के traversal में एक node को सिर्फ एक बार ही visit किया जाता है। Binary tree के traversal का अर्थ है कि “tree के प्रत्येक node को किसी order में visit करना” वैसे तो trees को विभिन्न तरीके से traverse किया जाता है लेकिन हम यहां तीन मुख्य … Read more