文章

4

粉丝

8

获赞

13

访问

606

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

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

struct node {
    char code;
    struct node* left;
    struct node* right;
};

struct node* build_tree(const char* str, int* pindex, int end) {
    if (*pindex >= end) return NULL; 

    char code = str[(*pindex)++];
    if (code == '#') return NULL;

    struct node* root = (struct node*)malloc(sizeof(struct node));
    root->code = code;

    root->left = build_tree(str, pindex, end);
    root->right = build_tree(str, pindex, end);

    return root;
}

void destroy_tree(struct node* root) {
    if (root == NULL) return;
    destroy_tree(root->left);
    destroy_tree(root->right);
    free(root);
}

void print_tree(struct node* root) {
    if (root == NULL) return;
    print_tree(root->left);
    printf("%c ", root->code);
    print_tree(root->right);
}

int main() {
    char str[128];

    while (scanf("%s", str) != -1) {
        in...
登录查看完整内容


登录后发布评论

暂无评论,来抢沙发