问题描述:
Given n points on a 2D plane, find the maximum number of points that lie on the same straight line.
原问题链接:https://leetcode.com/problems/max-points-on-a-line/
问题分析
给定一个平面上若干个点来说,要计算有多少个点在一条线上,我们需要选择每个节点作为起点,看它到所有其他的点能连成一条线的有多少个。对于每个点的情况,取它所能覆盖的最大点个数。
在具体的实现中,有若干种情况需要考虑。对于一个点来说,可能有其他的点和它是在同一个点上,这个时候我们需要一个元素来计算它重复出现的个数。另外,对于和某个点在一条线上的元素,可能是在水平的x轴或者y轴上。还有的就是其他可能的情况。那么要判断其他的情况,我们可以通过计算平面上两个点之间的斜率来统计。
这样,我们可以通过在每访问一个点的时候建立一个Map<Double, Integer>,map里key表示从该点到另外一个节点的斜率,value表示这个斜率下的元素个数。而对于在垂直线上的元素来说,它相当于斜率是无穷大,我们可以用Double.MAX_VALUE来表示。每次我们碰到一个元素,就计算它的斜率并加入到map中。
详细的代码实现如下:
/** * Definition for a point. * class Point { * int x; * int y; * Point() { x = 0; y = 0; } * Point(int a, int b) { x = a; y = b; } * } */ public class Solution { public int maxPoints(Point[] points) { if(points.length <= 1) return points.length; int max = 0; for(int i = 0; i < points.length; i++) { Map<Double, Integer> map = new HashMap<>(); int duplicate = 1; for(int j = 0; j < points.length; j++) { if(i == j) continue; if(points[i].x == points[j].x && points[i].y == points[j].y) duplicate++; else if(points[i].y == points[j].y) map.put(Double.MAX_VALUE, map.containsKey(Double.MAX_VALUE) ? map.get(Double.MAX_VALUE) + 1 : 1); else { double slope = 1.0 * (points[j].y - points[i].y) / (points[j].x - points[i].x); map.put(slope, map.containsKey(slope) ? map.get(slope) + 1 : 1); } } if(map.isEmpty()) max = Math.max(max, duplicate); else { for(double d : map.keySet()) max = Math.max(max, map.get(d) + duplicate); } } return max; } }
相关推荐
max points on a line leetcode ISCAS15 - leetcode - week1 唐波 任杰 王建飞 殷康 张一鸣 ISCAS15 - leetcode - week2 曾靖 刘重瑞 沉雯婷 刘旭斌 王建飞 ISCAS15 - leetcode - week3 殷康 张一鸣 赵伟 任杰 唐波 ...
python python_leetcode题解之149_Max_Points_on_a_Line.py
javascript js_leetcode题解之149-max-points-on-a-line.js
dna匹配 leetcode leetcode刷题--C++ 哈希表 Longest Substring Without Repeating Characters ...Points on a Line 斜率 map, int> Fraction to Recurring Decimal map long long 正负号 Repeated DNA S
LeetCodeLeetCode solutions(Java)树Minimum Depth of Binary Tree栈evaluate-reverse-polish-notation穷举max-points-on-a-line链表sort-list排序insertion-sort-list树binary-tree-postorder-traversal树binary-...
在LeetCode平台上,题目"Max Points on a Line"是一道典型的几何与图论结合的问题,旨在测试编程者对数据结构和算法的理解。本题要求找到二维平面上最多共线的点的数量。这个问题的关键在于理解如何有效地计算每一对...
Up to date (2016-12-18), there are `447` Algorithms / `13` Database / `4` Shell / `4` Draft questions on [LeetCode Online Judge](https://leetcode.com/). The number of questions is increasing recently...
2. 题目149 - "Max Points on a Line" 这道题目要求找到平面上最多共线的点。解决方法通常涉及线性代数,如计算两点之间的斜率,并通过哈希表记录斜率及其出现的次数。在Java中,可以使用HashMap来存储斜率和对应的...
2. **Max points on a line** (平面上最多的共线点): 此题考察的是线性代数和几何知识,以及如何在二维平面上找到共线点。在Java中,可以使用数据结构如HashMap来存储斜率和点的数量,从而有效地计算最大共线点数。 ...