【PAT】1115 Counting Nodes in a BST (30 分)

//柳姐解法:dfs,关于最大层数明显易多了
#include <iostream>
#include <vector>
#include <math.h>
using namespace std;
struct node
{
    int data;
    int height;
    node* lchild,* rchild;
};

node* InsertT(node* root,int x){
    if(!root){
        root=new node;
        root->data=x;
        root->lchild=root->rchild=NULL;
        return root;
    }
    if(root->data>=x)
        root->lchild=InsertT(root->lchild,x);
    else
        root->rchild=InsertT(root->rchild,x);
    return root;
}

vector<int> num;
int max_depth=0;
void dfs(node* root,int depth){
    if(!root){
        max_depth=max(depth,max_depth);//退出时max_depth要多1
        return;
    }
    num[depth]++;
    dfs(root->lchild,depth+1);
    dfs(root->rchild,depth+1);
}

int main(){
    int n,t;
    scanf("%d",&n);
    node* root=NULL;
    for(int i=0;i<n;i++){
        scanf("%d",&t);
        root=InsertT(root,t);
    }
    num.resize(n);
    dfs(root,0);
    printf("%d + %d = %d",num[max_depth-1],num[max_depth-2],num[max_depth-1]+num[max_depth-2]);

    return 0;
}

 

//我的解法:bfs,利用同层的连续关系,求每层的元素个数
#include <iostream>
#include <queue>
using namespace std;
struct node
{
    int data;
    int height;
    node* lchild,* rchild;
};

node* InsertT(node* root,int x){
    if(!root){
        root=new node;
        root->data=x;
        root->lchild=root->rchild=NULL;
        return root;
    }
    if(root->data>=x)
        root->lchild=InsertT(root->lchild,x);
    else
        root->rchild=InsertT(root->rchild,x);
    return root;
}

int n1=0,n2=0;
int max_height=0;
void bfs(node* root){
    if(!root) return;
    queue<node*> q;
    q.push(root);
    root->height=0;
    n1=0;
    while(!q.empty()){
        node* tmp=q.front();
        if(tmp->height==max_height){
            n2++;
        }else{
            n1=n2;
            n2=1;
            max_height=tmp->height;
        }
        q.pop();
        if(tmp->lchild){
            q.push(tmp->lchild);
            tmp->lchild->height=tmp->height+1;
        }
        if(tmp->rchild){
            q.push(tmp->rchild);
            tmp->rchild->height=tmp->height+1;
        }
    }
}

int main(){
    int n,t;
    scanf("%d",&n);
    node* root=NULL;
    for(int i=0;i<n;i++){
        scanf("%d",&t);
        root=InsertT(root,t);
    }
    bfs(root);
    printf("%d + %d = %d",n2,n1,n1+n2);

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值