6

Say I have a set of points on a 2d plane, how do I find the point(s) where the maximum euclidian distance to any of the points in the set is minimized?

Gilles 'SO- stop being evil'
  • 43,613
  • 8
  • 118
  • 182

1 Answers1

7

This is the smallest enclosing circle problem, and can be solved in linear time. Also, these slides describe a randomized algorithm that runs in expected linear time.

Juho
  • 22,554
  • 7
  • 62
  • 115
Sasho Nikolov
  • 2,537
  • 16
  • 20