223. Rectangle Area

Posted ymjyqsx

tags:

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

 

class Solution 
public:
    int computeArea(int A, int B, int C, int D, int E, int F, int G, int H) 
        int left = max(A,E), right = max(min(C,G), left);
        int bottom = max(B,F), top = max(min(D,H), bottom);
        return (C - A) * (D - B) - (right - left) * (top - bottom) + (G - E) * (H - F);
    
;

 

以上是关于223. Rectangle Area的主要内容,如果未能解决你的问题,请参考以下文章

223. Rectangle Area

leetcode 223: Rectangle Area

223. Rectangle Area

223. Rectangle Area

leetcode 223 Rectangle Area

LeetCode223. Rectangle Area 解题小结