平衡二叉树计算高度的同时判断是否平衡

今天一个朋友微软电话面试,问到一个问题,就是如题所述的,他问我他写的有没有错,挺难说的,然后我就随手写了一个版本(自我感觉良好)~

bool balance(Node* root, int& height) {
    if (root == NULL) {
        height = 0;
        return true;
    }

    int left_height = 0, right_height = 0;
    bool left_b = balance(root->left, left_height);
    bool right_b = balance(root->right, right_height);

    height = max(left_height, right_height) + 1;
    if (left_height - right_height > 1 || right_height - left_height > 1)
        return false;
    return left_b && right_b;
}
    原文作者:平衡二叉树
    原文地址: https://blog.csdn.net/jacketinsysu/article/details/51148102
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞