https://github.com/mohsen12999/c-cpp-projects
little student projects in c/c++ language
https://github.com/mohsen12999/c-cpp-projects
c cpp
Last synced: 3 months ago
JSON representation
little student projects in c/c++ language
- Host: GitHub
- URL: https://github.com/mohsen12999/c-cpp-projects
- Owner: mohsen12999
- Created: 2018-12-08T06:12:57.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-16T08:09:33.000Z (over 7 years ago)
- Last Synced: 2025-04-06T07:17:07.239Z (over 1 year ago)
- Topics: c, cpp
- Language: C++
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C-C-Projects
little student projects in c/c++ language. with help from [Geeks for Geeks](https://www.geeksforgeeks.org/).
## Average with binary serach
find array average with binary split.
[Average with binary](./avg-with-binary.cpp)
## Sum of Larg Numbers
impalntation Sum of very big number with character array that can not handle with int. [sum of larg numbers](./sumoflargenumbers.cpp)
## 10 Max & Min
find 10 Max and 10 Min in Array with cpp.
[10 Max & Min](./10max-min-with-index.cpp)
## Khayyam-Pascal's triangle
find Khayyam-Pascal's triangle with factorial function. [Khayyam-Pascal's triangle](./Khayyam-Pascals-triangle.cpp)
## Stack
implantation Stack with array and class. [Stack](./stack.cpp)
## Linklist
implantation Linklist with array and class. [Linklist](./linklist.cpp)
## Circular List
implantation Circular List with array and class. [Circular List](./circularlist.cpp)
## Quick sort
do Quick sort on Array. [Quick sort](./mergsort.cpp)
## Merg sort
do Merg sort on Array. [Merg sort](./quicksort.cpp)
## Quick sort & Merg sort
do Quick sort & Merg sort on Array. [Quick sort & Merg sort](./quicksort-mergsort.cpp)
## linklist or stack
convert array to linklist or stack.
[linklist or stack](./linklist-stack.cpp)
## class to linklist
convert class object to linklist.
[class to linklist](./student-linklist.cpp)
## Inherit class
cpp project with parent class (Person) and two child class.
[inherit with cpp](./cpp-inheritclass.cpp)