leetcode 면접문제 04.04.균형성 기초 dfs 검사

4573 단어
함수를 실현하여 두 갈래 나무의 균형을 검사합니다.이 문제에서 균형 나무의 정의는 다음과 같다. 임의의 노드, 두 그루의 나무의 높이 차이는 1을 넘지 않는다.
예 1:
두 갈래 나무[3,9,20,null,null,15,7]
    3
   / \
  9  20
    /  \
   15   7

true로 돌아갑니다.
예 2:
두 갈래 나무[1,2,2,3,3,null,null,4,4]
      1
     / \
    2   2
   / \
  3   3
 / \
4   4

false로 돌아갑니다.
출처: 리코드(LeetCode) 링크:https://leetcode-cn.com/problems/check-balance-lcci저작권은 인터넷 소유에 귀속된다.상업 전재는 정부에 연락하여 권한을 부여하고, 비상업 전재는 출처를 명시해 주십시오.
기초문제는 좌우 나무의 높이에 귀속되어 차치가 큰지 아닌지를 판단한다1
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
// #define Node (TreeNode)

class Solution {
public:

    int ok;

    int dfs(TreeNode* u) {
        if(!u) return 0;
        int lef = dfs(u->left);
        int rig = dfs(u->right);
        if(abs(rig-lef) > 1) ok = false;
        return (1+(max(lef, rig)));
    }

#define INF (0x7f7f7f7f)
    bool isBalanced(TreeNode* root) {
        if(!root) return true;
        ok = true;
        dfs(root);
        return ok;
    }
};

좋은 웹페이지 즐겨찾기