Skip to content

Convex Hull Problem solution with Divide and Conquer Approach

Notifications You must be signed in to change notification settings

emircanerol/Convex-Hull-DnC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Convex-Hull-DnC

Convex Hull Problem solution with Divide and Conquer Approach

Compilation and Run

g++ convex.cpp -o convex
./convex input.txt

Input file should be formed as:
<n: number of points>
(x_i, y_i)
(x_i, y_i)
(x_i, y_i)
.
.
.

Output Format:
<n: number of points in the hull>
(x_i, y_i)(x_i, y_i)(x_i, y_i)...

About

Convex Hull Problem solution with Divide and Conquer Approach

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages