Skip to content

DSA

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

DSA

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

Home

    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
    Quick Sorting (Recursive and Non Recursive)
    February 11, 2023

    Quick Sorting (Recursive and Non Recursive)

    • algorithms
    • stack
    • YASH PAL

    Algorithm Quick sorting (Nonrecursive) QUICK(A, N, BEG, END, LOC) Here A is an array with N elements. Parameters BEG and END contain the boundary values of the sub-list of A to which this procedure applies. LOC keeps track of the position of the first element. A[BEG] of the sub list during the procedure. The local […]

    • Tags:
    • algorithm
    • DSA
    • quick sorting
    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
    • 1
    • 2
    • 3
    • …
    • 5

    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