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
- Host: GitHub
- URL: https://github.com/thatsabhishek/cpp-codes
- Owner: thatsabhishek
- Created: 2023-03-07T18:44:13.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-31T14:54:42.000Z (about 2 years ago)
- Last Synced: 2025-03-25T17:17:54.890Z (2 months ago)
- Topics: coding, cplusplus, cpp, programming
- Language: C++
- Homepage:
- Size: 285 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)