zoukankan      html  css  js  c++  java
  • 练习:输入二叉树结构,输出中序遍历--C语言

    #include<stdio.h>
    #include<stdio.h>
    #define MaxNameLen 100
    typedef struct TreeNode{
        char* name;
        Struct TreeNode* left_child;
        Struct TreeNode* right_child;
    }TreeNode;
    
    TreeNode* NewTreeNode(const char* name){
        TreeNode* node = NULL;
        node = (TreeNode*)malloc(size of(TreeNode));
        memset(node,0,sizeof(TreeNode));
        node->name = strdup(name);
        return node
    }
    
    void FreeTreenode(TreeNode* node){
        if(node->name) free(node->name);
        if(node->left_child) FreeTreeNode(node->left_child);
        if(node->right_child) FreeTreeNode(node->right_child);
        memset(node,0,sizeof(*node));
    }
    
    void delete_space(char* str){
        int i=0,j=0;
        while(str[j]==0x20) j++;
        while(str[j]) str[i++]=str[j++];
        str[i]=0;
        while(i>0&&str[i]==0x20) str[i--]=0;
    }
    
    int GetNodeName(char* name,const char* str){
        int len=0;
        const char* bkstr=str;
        name[0]=0;
        while(*str){
            if(*str==',') break;
            if(*str=='{') break;
            if(*str=='}') break;
            name[len]=*str;
            name[len+1]=0;
            str++;
            len++;
            if(len>=MaxNameLen){
                printf("[error],too long name %s!
    ",name);
                exit(0);
            }
        }
        delete_space(name);
        return str-bkstr;
    }
    
    TreeNode* GetTreeNode(char* str){
        char name[MaxNameLen+1];
        TreeNode* node;
        int len,n,found_b=0,found_c=0;
        char* bkstr;
        char bkch;
    
        len=GetTreeNode(name);
        node=NewTreeNode(name);
        if(len==0) return NULL;
        if(str[len]!='{'){
            return node;
        }
        str+=len+1;
        n=1;
        bkstr=str;
        while(*str){
            if(*str=='{') n++;
            if(*str=='}'){
                n--;
                if(n==0){
                    bkch = *str;
                    *str=0;
                    node->left_child=GetTreeNode(bkstr);
                    *str=bkch;
                    found_b=1;
                    found_c=1;
                    str++;
                    break;
                    }
            }
            if(*str==','){
                if(n==1){
                    bkch=*str;
                    *str=0;
                    node->left_chlid=GetTreeNode(bkstr);
                    *str=bkch;
                    found_b=1;
                    str++;
                    break;
                }
            }
            *str++;
        }
        if(found_b==0){
            return node;
        }
        if(found_c) return node;
        bktsr=str;
    
        while(*str){
            if(*str=='{') n++;
            if(*str=='}') n--;
            if(n==0){
                bkch=*str;
                *str=0;
                node->right_child=GetTreeNode(bkstr);
                *str=bkch;
                found_c=1;
                str++;
                break;
            }
            *str++;
        }
    }
    
    void PrintTree(TreeNode* root){
        if(root==NULL) return;
        if(root->left_child) PrintTree(root->left_child);
        printf("%s",root->name);
        if(root->right_child) PrintTree(root->right_child);
    }
    
    void FreeTree(TreeNode* root){
        FreeTreeNode(root);
    }
    
    in mian(int argc,char* argv[]){
        TreeNode* root=NULL;
        char teststr[1024];
        if(argc<2){
            scanf("%s",teststr);
        }
        else{
            strcpy(teststr,argv[1];)
        }
        root=GetTreeNode(teststr);
        if(root){
            PrintTree(root);
        }
        if(root) FreeTree(root);
        return 0;
    }
    

      

    别人帮写的,能用python实现就好。

    2021-1-2,笔记

  • 相关阅读:
    Codeforces Round #578 (Div. 2) 训练总结及题解
    docker
    使用java遍历Map集合的方式
    SpringCloud集成rabbitmq:org.springframework.amqp.AmqpConnectException: java.net.ConnectException的解决办法
    创建新Docker容器时出现“The container name "/xxx" is already in use by container xxxxxxxxxxx...”问题的解决办法
    springBoot 项目中,使用定时任务报错
    java获取当前日期和前一周、前一月、前一年的日期
    用户行为PV&UV
    使用IDEA开发,多模块依赖中,找不到依赖: 程序包xxx.xxx.xxx不存在的问题
    Java获取本地IP地址和主机名
  • 原文地址:https://www.cnblogs.com/yuntimer/p/14224315.html
Copyright © 2011-2022 走看看