Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-23T12:21:19.000Z (over 1 year ago)
- Last Synced: 2023-08-23T14:39:06.399Z (over 1 year ago)
- Language: C
- Size: 7.81 KB
- Stars: 0
- 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