https://github.com/arturromanchenko/algorithms
https://github.com/arturromanchenko/algorithms
algorithms cpp datastructures search sorting
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/arturromanchenko/algorithms
- Owner: ArturRomanchenko
- Created: 2024-08-19T10:12:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-21T10:48:48.000Z (almost 2 years ago)
- Last Synced: 2025-02-09T17:46:20.001Z (over 1 year ago)
- Topics: algorithms, cpp, datastructures, search, sorting
- Language: C++
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Search
| Name algorithm | Data Structure | Average result | Worse result |
|:-----------------:|:--------------:|:--------------:|:------------:|
| Binary search | Sorted array | O(log(n)) | O(log(n)) |
| Linear search | Array | O(n) | O(n) |