LeetCode 1037 有效的回旋镖[数学] HERODING的LeetCode之路

LeetCode 1037 有效的回旋镖[数学] HERODING的LeetCode之路,第1张

解题思路:
方法很多,有对比斜率,有三角形是否有面积,都可以判断是否构成回旋镖,代码如下:

class Solution {
public:
    bool isBoomerang(vector<vector<int>>& points) {
        if(points[0] == points[1] || points[0] == points[2] || points[1] == points[2]) {
            return false;
        }
        int x1 = points[0][0] - points[1][0];
        int y1 = points[0][1] - points[1][1];
        int x2 = points[1][0] - points[2][0];
        int y2 = points[1][1] - points[2][1];
        return y1 * x2 != y2 * x1;
    }
};

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1330691.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-12
下一篇 2022-06-12

发表评论

登录后才能评论

评论列表(0条)

保存