Leetcode 223 Rectangle Area
Posted 我没货,只剩下水了
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 223 Rectangle Area相关的知识,希望对你有一定的参考价值。
求相交矩形的面积
1 class Solution { 2 public: 3 int computeArea(int A, int B, int C, int D, int E, int F, int G, int H) { 4 int dx = max(A,E); 5 int dy = max(B,F); 6 int ux = min(C,G); 7 int uy = min(D,H); 8 if(ux>dx&&uy>dy){ 9 return (C-A)*(D-B)+(G-E)*(H-F) - (ux - dx) * (uy - dy); 10 } 11 else return (C-A)*(D-B)+(G-E)*(H-F) ; 12 } 13 };
以上是关于Leetcode 223 Rectangle Area的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode223. Rectangle Area 解题小结