mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
C++ 算法大全
ab60bdb062
Bubble Sort(Kabarcık Sıralama) hakkkında bubble sort'un çalışma prensibi,algoritma analizi,en iyi-en kötü durum gibi bilgiler eklenmiştir.Bu pull request'e giren bir kişi bubble sort hakkında kolayca bilgi edinebilir. Ayrıca algoritmada kullanılan swap işlemi hakkında da kod içinde nasıl çalıştığı bilgisi eklenmiştir.Bu işlemi tam anlaşılır hale getirmek içinde alt kısımda örnekle açıklanmıştır.Kod içinde de bazı yerlerde göze hoş gözükmesi için dizayn değişiklikleri yapıldı. |
||
---|---|---|
Backtracking | ||
Computer Oriented Statistical Methods | ||
Data Structure | ||
Dynamic Programming | ||
Graph | ||
Greedy Algorithms | ||
Hashing | ||
Math | ||
Operations on Datastructures | ||
Others | ||
Range queries | ||
Search | ||
Sorting | ||
README.md | ||
sleep sort.c | ||
ternary_search.cpp |
C++
This repository contains some useful algorithms and data structures.
Contribute
How you can contribute? See this small guide.
- Use the directory structure of the repository.
- Please describe your pull requests.
- Don't use bits/stdc++.h because this is quite Linux specific and slows down the compiler process.
- Put comments in your code.
- Avoid struct. Instead use the class keyword.
- Add some test cases in the main-function.
- Can suggest any change in present algorithms(if needed).