leetcode-面试题16.03交点

Posted oldby

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-面试题16.03交点相关的知识,希望对你有一定的参考价值。

题目描述:

技术图片

 

 方法:

class Solution:
    def intersection(self, start1, end1, start2, end2):
        x1, y1, x2, y2, x3, y3, x4, y4 = *start1, *end1, *start2, *end2
        det = lambda a, b, c, d: a * d - b * c
        d = det(x1 - x2, x4 - x3, y1 - y2, y4 - y3)
        p = det(x4 - x2, x4 - x3, y4 - y2, y4 - y3)
        q = det(x1 - x2, x4 - x2, y1 - y2, y4 - y2)
        if d != 0:
            lam, eta = p / d, q / d
            if not (0 <= lam <= 1 and 0 <= eta <= 1): return []
            return [lam * x1 + (1 - lam) * x2, lam * y1 + (1 - lam) * y2]
        if p != 0 or q != 0: return []
        t1, t2 = sorted([start1, end1]), sorted([start2, end2])
        if t1[1] < t2[0] or t2[1] < t1[0]: return []
        return max(t1[0], t2[0])

 

以上是关于leetcode-面试题16.03交点的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 面试题 16.03. 交点

前端面试题之手写promise

链表相关面试题:返回两个链表的第一个交点,判断单链表是否有环,返回入环的第一个结点

Leetcode程序员面试金典面试题04.06.后继者

LeetCode:118.杨辉三角面试题 17.01. 不用加号的加法

数据结构二叉树相关面试题 Java版 LeetCode题 ------- 二叉树