data structures Parenthesis Matching program in C programming YASH PAL, March 6, 2023May 28, 2024 In this tutorial post, we will write a Parenthesis matching program in a c programming… Continue Reading
data structures Tower of Hanoi Non-Recursive Using Stack program in C programming YASH PAL, March 5, 2023May 28, 2024 In this post tutorial, we will write a Tower of Hanoi Non-recursive using a stack… Continue Reading
data structures Tower of Hanoi Recursive program in C Programming YASH PAL, February 26, 2023May 28, 2024 In this tutorial post, we will write a Tower of Hanoi Recursive program in the… Continue Reading
data structures Check the Palindrome number program in c programming YASH PAL, February 26, 2023May 28, 2024 In this tutorial, we are going to write a program in a c programming language… Continue Reading
data structures Print the reverse of a string using Stack program in c YASH PAL, February 19, 2023May 28, 2024 In this tutorial post we are going to write a Print the Reverse of a… Continue Reading
data structures Evaluate a Postfix and Prefix equation program in c YASH PAL, February 18, 2023May 28, 2024 In this tutorial post, we are going to write to evaluate a postfix and prefix… Continue Reading
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