uicccui 2021-11-24 18:56 采纳率: 42.9%
浏览 83
已结题

数据结构与算法“play with tree”

Given a binary tree, your task is to get the height and size(number of nodes) of the tree.
The Node is defined as follows.

struct Node {
Node *lc, *rc;
char data;
};

Implement the following function.

void query(const Node *root, int &size, int &height)
{
// put your code here
}

提示

In this problem, we assume that the height of the tree with only one node is 1.

求完整代码

  • 写回答

1条回答 默认 最新

  • 广大菜鸟 2021-11-25 01:06
    关注
    
    #include<iostream>
    using namespace std;
    
    #define max(a,b) ((a)>(b)?(a):(b))
    
    struct Node {
        struct Node* lc, * rc;
        char data;
    };
    
    void query(const Node* root, int& size, int& height) {
        if (root == NULL) return;
        int leftHeight = 0, rightHeight = 0;
        query(root->lc, size, leftHeight);
        query(root->rc, size, rightHeight);
        size += 1;
        height = 1 + max(leftHeight, rightHeight);
    }
    
    int main() {
        //测试案例:
        //            root 
        //        lc            rc
        Node* root = (Node*)malloc(sizeof(Node));
        if (root != NULL) {
            root->rc = (Node*)malloc(sizeof(Node));
            if (root->rc != NULL) {
                root->rc->lc = root->rc->rc = NULL;
            }
    
            root->lc = (Node*)malloc(sizeof(Node));
            if (root->lc != NULL) {
                root->lc->lc = root->lc->rc = NULL;
            }
        }
        int size = 0, height = 0;
        query(root, size, height);
        cout << size << "\t" << height << endl;
    }
    

    img

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 12月8日
  • 已采纳回答 11月30日
  • 创建了问题 11月24日

悬赏问题

  • ¥15 为啥画版图在Run DRC会出现Connect Error?可我Calibre的hostname和计算机的hostname已经设置成一样的了。
  • ¥20 网站后台使用极速模式非常的卡
  • ¥20 Keil uVision5创建project没反应
  • ¥15 mmseqs内存报错
  • ¥15 vika文档如何与obsidian同步
  • ¥15 华为手机相册里面的照片能够替换成自己想要的照片吗?
  • ¥15 陆空双模式无人机飞控设置
  • ¥15 sentaurus lithography
  • ¥100 求抖音ck号 或者提ck教程
  • ¥15 关于#linux#的问题:子进程1等待子进程A、B退出后退出(语言-c语言)