https://github.com/swpn0neel/advanced-c-programming
Some important C programs involving Data Structures and Algorithms
https://github.com/swpn0neel/advanced-c-programming
Last synced: 4 months ago
JSON representation
Some important C programs involving Data Structures and Algorithms
- Host: GitHub
- URL: https://github.com/swpn0neel/advanced-c-programming
- Owner: Swpn0neel
- License: mit
- Created: 2023-08-02T12:13:16.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-23T12:21:19.000Z (almost 2 years ago)
- Last Synced: 2025-01-15T05:52:55.806Z (6 months ago)
- Language: C
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advanced-C-Programming
Some important C programs involving Data Structures and Algorithms
1. Write a program to perform insertion and deletion in an array, and also to display that array.
2. Write a program to merge two sorted arrays, such that the merged array is also sorted.
3. Write a program to perform addition of two sparse matrices in 3 tuple form.
4. Write a program to make a stack and define Push, Pop and Display functions.
5. Write a program to add two polynomials.
6. Write a program to check whether an infix expression is correct or not using stack.
7. Write a program to change an postfix expression to infix expression by using stack.
8. Write a program to change an infix expression to postfix expression by using stack.
9. Write a program to evaulate a given postfix expression