changing typo (#1168)

This commit is contained in:
Maxwell Aladago 2019-09-04 16:06:44 -04:00 committed by Christian Clauss
parent 9492e7af7c
commit a4ed40be86

View File

@ -7,7 +7,7 @@ computer graphics and game development.
Two algorithms have been implemented for the convex hull problem here. Two algorithms have been implemented for the convex hull problem here.
1. A brute-force algorithm which runs in O(n^3) 1. A brute-force algorithm which runs in O(n^3)
2. A divide-and-conquer algorithm which runs in O(n^3) 2. A divide-and-conquer algorithm which runs in O(n log(n))
There are other several other algorithms for the convex hull problem There are other several other algorithms for the convex hull problem
which have not been implemented here, yet. which have not been implemented here, yet.