直线上最多的点数_leetcode

题目描述

给你一个数组 points ,其中 points[i] = [xi, yi] 表示 X-Y 平面上的一个点。求最多有多少个点在同一条直线上。

提示:

1 <= points.length <= 300
points[i].length == 2
-104 <= xi, yi <= 104
points 中的所有点 互不相同

解题思路

遍历每个点,计算该个点与其他所有点之间的斜率,以哈希的形式记录各个斜率的出现次数,斜率出现次数最多的结点就是与该点在同一条直线上的其他点的个数

各个结点最多在一条直线上的结点的个数即为最终的结果

代码

def maxPoints(points):
        answer=0
        for i in range(len(points)):
            temp_dict=dict()
            for j in range(i+1,len(points)):
                if (points[j][0]-points[i][0])==0:
                    temp="*"
                else:
                    temp=(points[j][1]-points[i][1])/(points[j][0]-points[i][0])
                if temp not in temp_dict:
                    temp_dict[temp]=1
                else:
                    temp_dict[temp]+=1
            if len(temp_dict)!=0:
                b=max(temp_dict.values())
                answer=max(b,answer)
        return answer+1

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值