Skip to content

Commit 4de991b

Browse files
authored
Update README.markdown
1 parent 9b0a3c5 commit 4de991b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Closest Pair/README.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Closest Pair is an algorithm that finds the closest pair of a given array of points By utilizing the Divide and Conquer methodology of solving problems so that it reaches the correct solution with O(nlogn) complexity.
44

5-
![Given points and we're required to find the two red ones](Closest Pair/Images/1200px-Closest_pair_of_points.png)
5+
![Given points and we're required to find the two red ones](../Closest\ Pair/Images/1200px-Closest_pair_of_points.png)
66

77
As we see in the above image there are an array of points and we need to find the closest two, But how do we do that without having to compare each two points which results in a whopping O(n^2) complexity?
88

0 commit comments

Comments
 (0)