LeetCode之Rectangle Overlap(Kotlin)

栏目: 编程工具 · 发布时间: 6年前

内容简介:问题: A rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) are the coordinates of its bottom-left corner, and (x2, y2) are the coordinates of its top-right corner. Two rectangles overlap if the area of their intersection is positive. To be

问题: A rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) are the coordinates of its bottom-left corner, and (x2, y2) are the coordinates of its top-right corner. Two rectangles overlap if the area of their intersection is positive. To be clear, two rectangles that only touch at the corner or edges do not overlap. Given two (axis-aligned) rectangles, return whether they overlap.

Example 1:

Input: rec1 = [0,0,2,2], rec2 = [1,1,3,3]
Output: true
Example 2:

Input: rec1 = [0,0,1,1], rec2 = [1,0,2,1]
Output: false
Notes:

Both rectangles rec1 and rec2 are lists of 4 integers.
All coordinates in rectangles will be between -10^9 and 10^9.
复制代码

方法: 先判断垂直线的相对关系,然后再根据水平线的相对关系分情况判断是否有相交,根据不同的逻辑分支输出最终结果。

具体实现:

class RectangleOverlap {
    fun isRectangleOverlap(rec1: IntArray, rec2: IntArray): Boolean {
        val x1 = rec1[0]
        val y1 = rec1[1]
        val x2 = rec1[2]
        val y2 = rec1[3]

        val x3 = rec2[0]
        val y3 = rec2[1]
        val x4 = rec2[2]
        val y4 = rec2[3]

        if(x1 >= x3 && x1 < x4) {
            if (y1 >= y3 && y1 < y4) {
                return true
            } else if (y1 >= y4) {
                return false
            } else {
                if (y2 > y3) {
                    return true
                } else {
                    return false
                }
            }
        } else if (x1 >= x4) {
            return false
        } else {
            if (x2 > x3) {
                if (y1 >= y3 && y1 < y4) {
                    return true
                } else if (y1 >= y4) {
                    return false
                } else {
                    if (y2 > y3) {
                        return true
                    } else {
                        return false
                    }
                }
            } else {
                return false
            }
        }
    }
}

fun main(args: Array<String>) {
    val rectangleOverlap = RectangleOverlap()
    println(rectangleOverlap.isRectangleOverlap(intArrayOf(-7,-3,10,5), intArrayOf(-6,-5,5,10)))
}
复制代码

有问题随时沟通

具体代码实现可以参考Github


以上所述就是小编给大家介绍的《LeetCode之Rectangle Overlap(Kotlin)》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

艾伦•图灵传

艾伦•图灵传

(英)安德鲁·霍奇斯 / 孙天齐 / 湖南科学技术出版社 / 2012-8-1 / 68.00元

《艾伦·图灵传:如谜的解谜者》是图灵诞辰100周年纪念版,印制工艺更为精美。本书是世界共认的最权威的图灵传记。艾伦?图灵是现代人工智能的鼻祖,在24岁时奠定了计算机的理论基础。二战期间,他为盟军破译密码,为结束战争做出巨大贡献。战后,他开创性地提出人工智能的概念,并做了大量的前期工作。因同性恋问题事发,被迫注射激素,后来吃毒苹果而死。作者是一名数学家,也是一名同性恋者。他对图灵的生平有切身的体会,......一起来看看 《艾伦•图灵传》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

MD5 加密
MD5 加密

MD5 加密工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换