149. Max Points on a Line

实验题目:

Given n points on a 2D plane, find the maximum number of points that lie on the same straight line.

Subscribe to see which companies asked this question.

实验思路:

点和方向确定一条直线。

需要两重循环,第一重循环遍历起始点a,第二重循环遍历剩余点b。

a和b如果不重合,就可以确定一条直线。

对于每个点a,构建 斜率->点数 的map

(1)b与a重合,以a起始的所有直线点数+1 (用dup统一相加)

(2)b与a不重合,a与b确定的直线点数+1


实验代码:

/**

 * 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) {
        if(points.empty())
            return 0;
        else if(points.size() == 1)
            return 1;
            
        int ret = 0;
        for(int i = 0; i < points.size(); i ++)
        {//start point
            int curmax = 1; //points[i] itself
            unordered_map<double, int> kcnt;    // slope_k count
            int vcnt = 0;   // vertical count
            int dup = 0;    // duplicate added to curmax
            for(int j = 0; j < points.size(); j ++)
            {
                if(j != i)
                {
                    double deltax = points[i].x - points[j].x;
                    double deltay = points[i].y - points[j].y;
                    if(deltax == 0 && deltay == 0)
                        dup ++;
                    else if(deltax == 0)
                    {
                        if(vcnt == 0)
                            vcnt = 2;
                        else
                            vcnt ++;
                        curmax = max(curmax, vcnt);
                    }
                    else
                    {
                        double k = deltay / deltax;
                        if(kcnt[k] == 0)
                            kcnt[k] = 2;
                        else
                            kcnt[k] ++;
                        curmax = max(curmax, kcnt[k]);
                    }
                }
            }
            ret = max(ret, curmax + dup);
        }
        return ret;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值