摘要: ##最粗暴的方法,自定义数据结构+重新定义排序规则 class Solution { public int[][] kClosest(int[][] points, int K) { int m = points.length; Node[] nodes = new Node[m]; for(int 阅读全文
posted @ 2020-11-09 16:04 浅滩浅 阅读(175) 评论(0) 推荐(0) 编辑