文章

6

粉丝

0

获赞

13

访问

676

头像
二叉树的深度 题解:
P4356
发布于2025年3月24日 11:42
阅读数 145

递归解法

#include<stdio.h>
#include<queue>
#include<string.h>
#include<string>
using namespace std;

struct TreeNode{
    char data;
    TreeNode* left;
    TreeNode* right;
    TreeNode(char x){
        data=x;
        left=NULL;
        right=NULL;
    }
};
//先序建树
TreeNode* buildPre(string& str,int &pos){
    if(str[pos]=='#'||pos>str.size()-1){
        pos++;
        return NULL;
    }
    TreeNode* root=new TreeNode(str[pos]);
    pos++;
    root->left=buildPre(str,pos);
    root->right=buildPre(str,pos);
    return root; 
}
//求树的高度
int height(TreeNode* proot){
  ...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发