Splay tree क्या है? हिंदी में

आज हम इस आर्टिकल में what is splay tree in hindi के बारे में विस्तार से पढ़ेंगे। मैंने इससे पहले data structure के बहुत सारे topics लिखे हुए है आप उन्हें भी पढ़ लीजियेगा। डेटा स्ट्रक्चर क्या है? what is Splay tree in hindi Splay tree एक self balancing बाइनरी सर्च ट्री है इसकी property … Read more

Spanning tree in hindi, prism and kruskal’s algorithm in hindi

Spanning tree in hindi spanning tree एक graph के द्वारा निर्मित किया जाता है। अर्थात spanning tree एक graph का subset होता है. एक spanning tree के सभी vertices होंगे और कुछ edges होंगे। मतलब एक spanning tree निर्मित करने के लिए एक graph में जितने भी vertices होंगे। उन सभी vertices का उपयोग करेंगे … Read more

functions in “c programming language” hindi

Functions in c:- Function एक piece of code होता है दुसरे शब्दों में कहें तो यह प्रोग्राम में एक प्रकार से एक sub-program की भाँती कार्य करता है. किसी प्रोग्राम को बनाते समय कभी-कभी हमें आवश्यकता होती है कि हमें कुछ कोड्स के execution से प्राप्त result को प्रोग्राम में बार बार प्रयोग करना पड़ता … Read more

Data Structure Operations in hindi

Data structure operations in hindi:- डेटा स्ट्रक्चर में डेटा को process करने के लिए विभिन्न data structure operations का प्रयोग किया जाता है जो निम्नलिखित है:- 1:- Traversing:- डेटा स्ट्रक्चर के प्रत्येक element को केवल एक बार visit करना traversing कहलाता है। 2:- Searching:-data structure में किसी element को खोजना जो कि एक या एक से अधिक … Read more

Advantage and disadvantage of array in hindi

array advantage in hindi:- array advantage निम्नलिखित होते है:- 1:- Array को आसानी से implement किया जा सकता है। 2:- एक ही प्रकार के विभिन्न डेटा items को केवल एक नाम के द्वारा प्रदर्शित किया जा सकता है। 3:- array एक ही समय में अनेक डेटा items को स्टोर कर सकता है। 4:- 2D arrays का … Read more

What is array in hindi & types of arrays in hindi?

Array in hindi:- array एक non-primitive तथा linear डेटा स्ट्रक्चर है जो कि एकसमान(similar) डेटा items का समूह होता है, अर्थात यह सिर्फ एक ही प्रकार के डेटा को ही स्टोर करेगा ( या तो यह सिर्फ सभी integer डेटा को स्टोर करेगा या फिर सभी floating point को )। Array डेटा स्ट्रक्चर का प्रयोग … Read more

Data Structure in Hindi & Types of Data structure in Hindi

हेल्लो दोस्तों! आज हम इस पोस्ट में बहुत ही आसान भाषा में Data Structure in Hindi (डाटा स्ट्रक्चर क्या है और इसके प्रकार कितने है?) के बारें में पढेंगे और इसके advantage को भी पढेंगे, तो चलिए शुरू करते हैं:- टॉपिक1 Data Structure in Hindi – डाटा स्ट्रक्चर क्या है?2 Types of Data Structure in … Read more

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