Analysis of algorithm in Hindi

Hello दोस्तों! आज मैं आपको इस पोस्ट में Analysis of algorithm in Hindi के बारें में बताऊंगा, और इसके example को भी पढेंगे, तो चलिए शुरू करते हैं:- Analysis of algorithm:- कोई भी program data structure तथा algorithm दोनों का combination होता है algorithm किसी भी specific problem को solve करने के लिए विभिन्न steps … Read more

What is Tree in Hindi ? ट्री क्या है . short notes

what is tree in hindi? ट्री क्या है

what is tree in Hindi:- trees एक important concept है ट्री मे store information को node कहते है । tree के सभी node edges के द्वारा जुड़े होते है । tree एक ऐसा data structure है जिसे विभिन्न hierarchical relations के द्वारा प्रदर्शित किया जाता है  tree का निर्माण उसके root से किया जाता है … Read more

what is Circular  Queue In Hindi? Circular  Queue क्या है ?

what is Circular  Queue In Hindi Linear queue  की तरह ही circular queue में भी Insertion , Initialization Underflow Condition की  testing आदि को perform किया जाता है अन्य operations कुछ Different होतो है । Testing of overflow condition in circular queue किसी भी नये element को जब circular queue में insert करना हो तो … Read more

Traversing, Inserting And Deleting linear Array in Data Structure in Hindi

Traversing, Inserting And Deleting linear Array in Data Structure in Hindi   Traversing in linear array हमारे पास एक linear array LA है जिससे lower bound (LB) तथा upper bound (UB) है एक operation PROCESS जो हर element मे visiting को दिखाता है । Algorithm:- [Initialize] set K=LB Repeat 3 & 4 while K=<=UB (Visiting … Read more

what is Array in Data Structure in Hindi ?डाटा स्ट्रक्चर मे अर्रे क्या है

Array in Data Structure in Hindi A  linear array is a list of find numbers of (N)  of the homogeneous data elements. array मे element index के द्वारा represent किए जाते है । array के element successive memory location पे स्टोर रहते है array की length या  size UB-LB+1 होती है जब हमें किसी Program … Read more

what is Queue in Hindi? क्यु क्या है

Introduction to Queue what is  Queue in Hindi? Queue logical first in first out (FIFO)  के सिद्धांत पर कार्य करता है इसे normally use में लिया जाता है। Queue को दो तरह से implement किया जा सकता है 1. Static implementation 2. Dynamic implementation जिस queue को array के द्वारा implement किया जाता है वह … Read more

APPLICATION OF STACKS in Hindi? with example in Hindi

APPLICATION OF STACKS Stack को main data structure की तरह use किया जाता है इसकी कुछ application निम्न है 1. Stack को function के बीच parameters pass करने के लिए use किया जाता है 2. High-level programming language जैसे Pascal, c, etc. Stack को recursion के लिए भी use में लेते हैं Stack को बहुत … Read more

Stack Operation in Hindi

Hello दोस्तों! आज मैं आपको इस पोस्ट में what is Stack Operation in Hindi) के बारें में बताऊंगा, और , तो चलिए शुरू करते हैं what is Stack Operation Stack पर मुख्यतः दो प्रकार के operation को perform किया जाता है  Push operation Pop operation  Push operation:- top पर कोई भी नया element डालना या … Read more

What is Structure and Union in hindi ?

Structure and Union Array को हम समान प्रकार के data के लिए इस्तेमाल करते हैं परंतु अगर हमें mix प्रकार का data group में Store करना हो तो Array का प्रयोग नहीं किया जा सकता तथा  यहां पर structure or union का प्रयोग करते हैं.अर्थात की structure या Union ऐसे संबंधित data का समूह है … Read more