An open API service indexing awesome lists of open source software.

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

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)