文章

3

粉丝

0

获赞

31

访问

1.0k

头像
二叉树遍历 题解:
P1161 清华大学/南京大学机试题
发布于2025年3月9日 12:12
阅读数 283

求大神指导  为什么会超时  如何修改
#include<stdio.h>
#include<stdlib.h>
struct treenode{
    char data;
    struct treenode *left;
    struct treenode *right;
};
void func(struct treenode *root);
struct treenode *creat();
int main(){
    struct treenode *root = creat();
    func(root);
    
}
struct treenode *creat(){
    char s;
    scanf("%c",&s);
    if(s=='#'){
        return NULL;
        //TODO
    }
    struct treenode *head = (struct treenode*)malloc(sizeof(struct treenode));
    head->data=s;
    head->left=creat();
    head->right=creat();
    return head;
};
void func(struct treenode *root){
    if(root==NULL){
...

登录查看完整内容


登录后发布评论

1 条评论
快乐小土狗
2025年3月9日 20:57

如果是单组数据可以改成这样

#include<stdio.h>
#include<stdlib.h>
struct treenode{
    char data;
    struct treenode *left;
    struct treenode *right;
};
void func(struct treenode *root);
struct treenode *creat();
int flag = 0;//结束标记
int main(){

	struct treenode *root = creat();
    func(root);

}
struct treenode *creat(){
    char s;
    if (flag) return NULL;
    scanf("%c",&s);
    if(s=='#'){
        return NULL;
        //TODO
    }
    if (s=='\n') {
        flag = 1;
        return NULL;
    }
    struct treenode *head = (struct treenode*)malloc(sizeof(struct treenode));
    head->data=s;
    head->left=creat();
    head->right=creat();
    return head;
};
void func(struct treenode *root){
    if(root==NULL){
        return;
        //TODO
    }
    func(root->left);
    printf("%c ",root->data);
    func(root->right);
}

但是这个题是多组数据输入,最好是先直接输入一行,然后处理,一行处理一次。

赞(0)