Skip to content

DSA

  • Algorithms
  • DSA
  • Array
  • Stack
  • Queue
  • Matrix
  • Programs

DSA

  • Algorithms
  • DSA
  • Array
  • Stack
  • Queue
  • Matrix
  • Programs

Category: data structures

  1. Home
  2. Archive by category : "data structures"
Parenthesis Matching program in C programming
March 6, 2023

Parenthesis Matching program in C programming

  • data structures
  • Programs
  • stack
  • YASH PAL

In this tutorial post, we will write a Parenthesis matching program in a c programming language with practical program code examples and complete a full explanation with the output.

  • Tags:
  • DSA
  • programs
  • stack
Read More
Tower of Hanoi Non-Recursive Using Stack program in C programming
March 5, 2023

Tower of Hanoi Non-Recursive Using Stack program in C programming

  • data structures
  • Programs
  • stack
  • YASH PAL

In this post tutorial, we will write a Tower of Hanoi Non-recursive using a stack program in a c programming language with practical program code examples and a complete full explanation with output.

  • Tags:
  • DSA
  • programs
  • stack
Read More
Tower of Hanoi Recursive program in C Programming
February 26, 2023

Tower of Hanoi Recursive program in C Programming

  • data structures
  • Programs
  • stack
  • YASH PAL

In this tutorial post, we will write a Tower of Hanoi Recursive program in the c programming language in which the user will enter the number of disks.

  • Tags:
  • DSA
  • programs
  • stack
Read More
Check the Palindrome number program in c programming
February 26, 2023

Check the Palindrome number program in c programming

  • data structures
  • Programs
  • stack
  • YASH PAL

In this tutorial, we are going to write a program in a c programming language that will get the string as input from the user and then check if the equation/string is a palindrome number or not.

  • Tags:
  • DSA
  • programs
  • stack
Read More
Print the reverse of a string using Stack program in c
February 19, 2023

Print the reverse of a string using Stack program in c

  • data structures
  • Programs
  • YASH PAL

In this tutorial post we are going to write a Print the Reverse of a string program in c programming.

  • Tags:
  • DSA
  • programs
Read More
Evaluate a Postfix and Prefix equation program in c
February 18, 2023

Evaluate a Postfix and Prefix equation program in c

  • data structures
  • Programs
  • stack
  • YASH PAL

In this tutorial post, we are going to write to evaluate a postfix and prefix equation program in c programming.

  • Tags:
  • DSA
  • programs
  • stack
Read More
Infix to Postfix and Prefix Equation program in c
February 18, 2023

Infix to Postfix and Prefix Equation program in c

  • data structures
  • Programs
  • stack
  • YASH PAL

In this tutorial post we will write a Infix to postfix and prefix equation program in c programming language.

  • Tags:
  • DSA
  • programs
  • stack
Read More
Stack Operations program in c Programming
February 12, 2023

Stack Operations program in c Programming

  • data structures
  • Programs
  • stack
  • YASH PAL

In this tutorial, we are going to write a C program to perform stack operations like push, pop, and peep. before we start with the program please read about the stack.

  • Tags:
  • DSA
  • programs
  • stack
Read More
Tower of Hanoi (Recursive & Non-recursive)
February 10, 2023

Tower of Hanoi (Recursive & Non-recursive)

  • algorithms
  • data structures
  • YASH PAL

Algorithm – Tower of Hanoi (recursive) TOWER(N,BEG,AUX,END)This procedure gives a recursive solution to the Towers of Hanoi problem for N disks. 1. If N = 1, then:         (a) Write: BEG -> END.         (b) Return.    [End of If structure.] 2. [Move N – 1 disks from BEG to AUX.]  […]

  • Tags:
  • algorithm
  • DSA
Read More
January 26, 2023

Parenthesis matching using stack

  • data structures
  • stack
  • YASH PAL

Parenthesis matching algorithm PARENTHESIS_MATCHING (EQ, VALID) This algorithm checks whether the expression EQ written in infix notation is valid or not and assigns TRUE or FALSE to VALID. 1. Scan EQ from left to right until the end of the equation is encountered: 2.     If”(“is encountered then: put it in the STACK. 3.    […]

  • Tags:
  • DSA
  • stack
Read More
  • 1
  • 2
  • 3

Asides

  • Parenthesis Matching program in C programming
  • Tower of Hanoi Non-Recursive Using Stack program in C programming
  • Tower of Hanoi Recursive program in C Programming
  • Check the Palindrome number program in c programming
  • Print the reverse of a string using Stack program in c
  • Evaluate a Postfix and Prefix equation program in c
  • Infix to Postfix and Prefix Equation program in c
  • Stack Operations program in c Programming
  • Quick Sorting (Recursive and Non Recursive)
  • Tower of Hanoi (Recursive & Non-recursive)
Home About Contact Privacy DMCA
Copyright © datastructuresandalgorithms.com 2022