Algorithm to convert infix expression to postfix form

The following algorithm transforms the infix expression X into its equivalent postfix expression Y. The algorithm uses a stack to temporarily hold operators and left parentheses. The postfix expression Y will be constructed from left to right using the operands from X and the operators which are removed from STACK. We begin by pushing a left … Read more

Algorithm to Delete an Element from a Circular Queue.

Assuming that the Circular queue is stored in as array QU with size N. This algorithm will delete an element from the circular queue and assign it to D-ITEM. [Checking if QU is already empty or not?] 1. if FRONT = NULL then { write “Underflow !!” return } else { 2. set D_ITEM = QU [FRONT] … Read more

Radix Sort in Hindi – रेडिक्स सॉर्ट क्या है?

हेल्लो दोस्तों! आज हम इस पोस्ट में data structure में Radix sort in Hindi (रेडिक्स सॉर्ट क्या है?) के बारें में पढेंगे और इसका example को भी देखेंगे तो चलिए शुरू करते हैं:- Radix Sort in Hindi Radix sort एक integer sorting algorithm है जो अलग-अलग अंकों (digits) की keys की grouping करके integer keys … Read more

Shell Sort in Hindi – शैल सॉर्ट क्या है?

हेल्लो दोस्तों! आज हम इस article में Shell Sort in Hindi (शैल सॉर्ट क्या है?) के बारें में पढेंगे और इसके example को भी देखेंगे तो चलिए शुरू करते हैं. Shell Sort in Hindi Shell Sort बहुत ही ज्यादा efficient (कुशल) sorting एल्गोरिथम है और यह insertion sort एल्गोरिथम पर आधारित है. इस algorithm में सबसे पहले उन elements … Read more

Polynomial in Hindi – Data Structure

इस पोस्ट में हम data structure में Polynomial in Hindi के बारें में पढेंगे, तो चलिए start करते हैं:- Polynomial in Hindi – Data Structure एक polynomial object जो है वह pairs (<exponent,coefficient>)  का एक homogeneous ordered list होता है. जहाँ प्रत्येक coefficient यूनिक होता है. दूसरे शब्दों में कहें तो, “polynomial एक गणित का … Read more

Parameter Passing & Passing Arguments in Hindi

Hello दोस्तों! आज मैं आपको what is Parameter passing in Hindi (पैरामीटर पासिंग क्या है?) के बारें में बताऊंगा, इसे Passing arguments भी कहते है. हम इसके उदाहरण को भी देखेंगे, आप इसे पूरा ध्यान से पढ़िए आपको समझ में आ जायेगा, तो चलिए शुरू करते हैं:- Parameter Passing in Hindi – पैरामीटर पासिंग क्या है? … Read more

Doubly Linked List in Hindi & algorithm

हेल्लो friends! आज इस पोस्ट में हम what is Doubly Linked List in Hindi (डबली लिंक्ड लिस्ट क्या है?) के बारें में पढेंगे तथा इसके advantage और disadvantage को भी देखेंगे तो चलिए start करते हैं:- Doubly Linked List in Hindi – डबली लिंक्ड लिस्ट क्या है? Doubly linked list एक प्रकार का लिंक्ड लिस्ट … Read more