closest-pair
There are 17 repositories under closest-pair topic.
utsav507/python-projects
Intermediate-level Projects in Python
Grieverheart/ntcd
Single file collision detection, closest point, and raycasting library for convex shapes using GJK
bharath3794/Algorithms-Illuminated---Part-1
This is the implementation of 1st Part in 3-Part Series of Algorithms Illuminated Book. All Implementations in this repository are written in both Python and Golang. Single IPython Notebook contains all Algorithms given in this Part 1.
priyanshsaxena/AlgorithmDesign
Assignments done during CS403, Even Semester 2016-2017, IIT Mandi
weirane/closest-pair-wasm
Rust + WebAssembly demo of the closest pair problem
0x01h/closest-pair-distance-3d
Closest pair problem in 3D space using divide and conquer algorithm. Brute-force vs. divide and conquer approach complexity analysis.
IvanIlnytskyi/Parallel-Closest-Pair
C++ implementation of parallel 'Closest Pair' algorithm (https://www.cs.cmu.edu/~guyb/papers/BM04.pdf pages 44-46)
alex-vargas/finding-closest-pair-of-points
Project from UTEP's CS 6350 - Advance Algorithms class.
byeolbit/3-2_Algorithm
2016년도 3학년 2학기 알고리즘
grantgasser/algorithms-project
Closest Pair and Convex Hull
umutsevdi/closest-pair
C implementation of Closest Pair Problem.
andriyka/python-closest-pair-algorithm
closest-pair-algorithm from https://www.cs.cmu.edu/~guyb/papers/BM04.pdf
AntVil/closest-pair
Computes closest pairs of points
projeto-de-algoritmos/D-C_Closest_pair_problem
The Closest Pair Problem - Divide and Conquer algorithm - 2020
selcia25/advanced-data-structures-and-algorithms
👩💻This repository provides Python implementations of a variety of fundamental algorithms and problem-solving techniques. From Knapsack and TSP to BFS, DFS, and more, explore practical examples to enhance your algorithmic skills. Perfect for students and developers seeking to grasp essential algorithms in Python.
SlavkoPrytula/Find-The-Closest-Pair-Of-Points
Given an array consisting of n distinct points[p1[x1, y1] ... pn[xn, yn]]. Find the closest pair of points using a Divide-and-Conquer Algorithm with asymptotic complexity of O(N log N)