Leetcode: Max Points on a Line

Max Points on a Line 

http://oj.leetcode.com/problems/max-points-on-a-line/

给你一组点,求共线最多点的个数。

思路,暴力枚举,以每个“点”为中心,然后遍历剩余点,求出以i为起点j为终点的斜率(j>i),斜率相同的点一定共线。

对每个i,初始化一个哈希表,key 为斜率,value 为该直线上的点数。遍历结束后得到和当前i点共线的点的最大值,再和全局最大值比较,最后就是结果。

时间复杂度O(n2),空间复杂度O(n)。

其中有几点要注意的是: 存在坐标一样的点;存在斜率不存在的点(与x轴平行的直线)。

C++代码

/** 
 * Definition for a point. 
 * struct Point { 
 *     int x; 
 *     int y; 
 *     Point() : x(0), y(0) {} 
 *     Point(int a, int b) : x(a), y(b) {} 
 * }; 
 */  
class Solution {  
public:  
    int maxPoints(vector<Point> &points) {  
        // IMPORTANT: Please reset any member data you declared, as  
        // the same Solution instance will be reused for each test case.  
        unordered_map<float,int> mp;  
        int maxNum = 0;  
        for(int i = 0; i < points.size(); i++)  
        {  
            mp.clear();  
            mp[INT_MIN] = 0;  
            int duplicate = 1;  
            for(int j = 0; j < points.size(); j++)  
            {  
                if(j == i) continue;  
                if(points[i].x == points[j].x && points[i].y == points[j].y)  
                {  
                    duplicate++;  
                    continue;  
                }  
                float k = points[i].x == points[j].x ? INT_MAX : (float)(points[j].y - points[i].y)/(points[j].x - points[i].x);  
                mp[k]++;  
            }  
            unordered_map<float, int>::iterator it = mp.begin();  
            for(; it != mp.end(); it++)  
                if(it->second + duplicate > maxNum)  
                    maxNum = it->second + duplicate;  
        }  
        return maxNum;  
    }  
}; 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值