973. K Closest Points to Origin
题目链接
973. K Closest Points to Origin
题目分析
给一个坐标数组points
,从中返回K
个离0,0
最近的坐标。
其中,用欧几里得距离计算。
思路
把距离作为数组的键,把对应坐标作为数组的值。
用ksort函数排序,再用array_slice函数获取前K个即可。
最终代码
<?php
class Solution {
function kClosest($points, $K) {
$dists = [];
foreach($points as $point){
$dists[(string)sqrt(pow($point[0],2)+pow($point[1],2))] = $point;
}
ksort($dists);
return array_slice($dists,0,$K);
}
}
若觉得本文章对你有用,欢迎用爱发电资助。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。