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

https://github.com/thatsabhishek/cpp-codes

Collection of various C++ programs
https://github.com/thatsabhishek/cpp-codes

coding cplusplus cpp programming

Last synced: about 2 months ago
JSON representation

Collection of various C++ programs

Awesome Lists containing this project

README

        

# Cpp-Codes
This repository is the collection of various types of cool programs written in the C++ language.

The list below contains links to the specific programs.

In case, the list becomes too big in the future you can use `cmd + f` or `ctrl + f` to find the program you might be looking for.

## List of Programs

- [Searching](./Searching)
- [Binary Search](./Searching/binarysearch.cpp)
- [Linear Search](./Searching/linearsearch.cpp)
- [Sorts](./Sorts)
- [Bubble Sort](./Sorts/bubblesort.cpp)
- [Insertion Sort](./Sorts/insertionsort.cpp)
- [Merge Sort](./Sorts/mergesort.cpp)
- [Quick Sort](./Sorts/quicksort.cpp)
- [Selection Sort](./Sorts/selectionsort.cpp)
- [Other Programs](./otherprograms)
- [Armstrong number or not](./otherprograms/armstrongnumber.cpp)
- [GCD of 2 number](./otherprograms/gcd.cpp)
- [Factorial of a number](./otherprograms/factorial.cpp)
- [Fibonacci Series](./otherprograms/fibonacci.cpp)
- [Leap Year or not](./otherprograms/leapyear.cpp)
- [Multiplication of n natural numbers](./otherprograms/multiplicationofnnumbers.cpp)
- [Palindrome Number](./otherprograms/palindrome.cpp)
- [Prime number or not](./otherprograms/primenumber.cpp)
- [Prime numbers upto n](./otherprograms/primenumupton.cpp)
- [Sum of n natural numbers](./otherprograms/sumofnnumbers.cpp)