.. | ||
assets | ||
src | ||
.clang-format | ||
.gitignore | ||
Assignment.pdf | ||
CMakeLists.txt | ||
README.org |
Assignment 2
- ABC123:
zfp106
- Name:
Price Hiller
- Course:
CS2124
- Section:
0C3
- Semester:
Spring 2024
Source Code
The full source code for this project can be found at https://git.orion-technologies.io/Price/college/src/branch/Development/Spring-2023/CS-2124/Assignment-2
Running the Programs
- Install cmake version 3.25 or greater.
- Ensure you have a recent version of
make
at the time of writing. This project successfully compiles withGNU make
version4.4.1
. - Go the directory with
CMakeLists.txt
and runcmake .
to generate a Makefile. - Run
make all
to compile all the programs. - Go into the newly created
bin
directory where all the compiled programs will be output to - Programs will be named
PartOne
,PartTwo
, andPartThree
Program Outputs
Part One
C program to Check for balanced Parentheses in an Expression using Stack. The program will check if the expression has balanced Parentheses.
Part Two
Write a program which will take input (Infix expression) from user and converts the expression to Postfix expression (using stacks).
Part Three
Implement code that will tell you the time binary search took when implemented through both a recursive method and iterative method