data structures Infix to Postfix and Prefix Equation program in c YASH PAL, February 18, 2023May 28, 2024 In this tutorial post we will write a Infix to postfix and prefix equation program… Continue Reading
data structures Stack Operations program in c Programming YASH PAL, February 12, 2023May 28, 2024 In this tutorial, we are going to write a C program to perform stack operations… Continue Reading
algorithms Quick Sorting (Recursive and Non Recursive) YASH PAL, February 11, 2023May 28, 2024 Algorithm Quick sorting (Nonrecursive) QUICK(A, N, BEG, END, LOC) Here A is an array with… Continue Reading
algorithms Tower of Hanoi (Recursive & Non-recursive) YASH PAL, February 10, 2023May 28, 2024 Algorithm – Tower of Hanoi (recursive) TOWER(N,BEG,AUX,END)This procedure gives a recursive solution to the Towers… Continue Reading
Parenthesis matching using stack YASH PAL, January 26, 2023May 28, 2024 Parenthesis matching algorithm PARENTHESIS_MATCHING (EQ, VALID) This algorithm checks whether the expression EQ written in… Continue Reading
data structures Polish Notation YASH PAL, December 10, 2022May 28, 2024 In polish notation, the operator is placed before the operands. Polish notation has types called… Continue Reading
Mathematical Notation in Data Structure YASH PAL, December 10, 2022May 28, 2024 Mathematical Notation in Data Structure – First of all we will consider various types of… Continue Reading
data structures Operations on Stack YASH PAL, December 10, 2022May 28, 2024 Operations on stacks: The following operations are performed on stacks. Creating an empty stack PUSH… Continue Reading
algorithms Selection Sorting Algorithm YASH PAL, November 26, 2022May 28, 2024 Selection Sorting Algorithm: The selection sort starts from the first element and searches the entire… Continue Reading
algorithms Matrix in Programming YASH PAL, October 8, 2022May 28, 2024 Two-dimensional array(Marix) – A two-dimensional array is a list of finite numbers m*n homogeneous data… Continue Reading