Given N points in a 3D space, how to find the smallest sphere that contains these N points?

后端 未结 3 1057
广开言路
广开言路 2021-02-06 17:07

Given N points in a 3D space, how to find the smallest sphere that contains these N points?

3条回答
  •  攒了一身酷
    2021-02-06 17:51

    The problem boils down to finding the convex hull of the N points. Most of the convex hull algorithms like divide and conquer, gift wrapping or Jarvis March and Timothy Chan's algorithms can be applied to 3D too. Of all these algorithms Timothy Chan's algorithm is the best algorithm known.

提交回复
热议问题