Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/grantgasser/algorithms-project

Closest Pair and Convex Hull
https://github.com/grantgasser/algorithms-project

brute-force closest-pair convex-hull divide-and-conquer

Last synced: 22 days ago
JSON representation

Closest Pair and Convex Hull

Awesome Lists containing this project

README

        

# Algorithms Project
Using C++ and the SDL, write an application to graphically represent the runtime characteristics of the following closest-pair algorithms.

* Brute-Force Closest-Pair
* Divide-And-Conquer Closest Pair
* Brute-Force Convex Hull
- https://semisignal.com/brute-force-convex-hull-construction/
* Divide-And-Conquer Convex Hull
- https://www.geeksforgeeks.org/convex-hull-set-2-graham-scan/