鱼C论坛

 找回密码
 立即注册
查看: 1535|回复: 0

[技术交流] PTA A_1102 Invert a Binary Tree

[复制链接]
发表于 2020-2-11 16:52:58 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
传送门:https://pintia.cn/problem-sets/9 ... /994805365537882112

解:
二叉树的遍历
#include<cstdio>
#include<cstring>
#include<queue>

using namespace std;

typedef struct node{
    int lchild, rchild;
} BTNode;

int ttl;

void reverse_tree(int root, BTNode tree[])
{
    if (root == -1) return;

    reverse_tree(tree[root].lchild, tree);
    reverse_tree(tree[root].rchild, tree);
    
    int temp = tree[root].lchild;
    tree[root].lchild = tree[root].rchild;
    tree[root].rchild = temp;
}

void BFS(int root, BTNode tree[])
{
    queue<int> q;

    q.push(root);

    while (!q.empty())
    {
        int index = q.front();
        q.pop();

        printf("%d", index);
        if (--ttl) putchar(' ');

        if (tree[index].lchild != -1) q.push(tree[index].lchild);
        if (tree[index].rchild != -1) q.push(tree[index].rchild);
    }

    putchar('\n');
}

void print_inorder(int root, BTNode tree[])
{
    if (root == -1) return;

    print_inorder(tree[root].lchild, tree);
    printf("%d", root);
    if (--ttl) putchar(' ');
    print_inorder(tree[root].rchild, tree);
}

int main(void)
{
    int n, hash_table[15] = {0};
    BTNode tree[15];

    memset(tree, -1, sizeof(tree));
    
    scanf("%d", &n);
    if (!n) return 0;
    getchar();
    for (int i = 0; i < n; i++)
    {
        char s[5];

        fgets(s, 5, stdin);
        if (s[0] != '-') ++hash_table[tree[i].lchild = s[0] - '0'];
        if (s[2] != '-') ++hash_table[tree[i].rchild = s[2] - '0'];
    }

    for (int i = 0; i < n; i++)
        if (!hash_table[i])
        {
            reverse_tree(i, tree);
            ttl = n;
            BFS(i, tree);
            ttl = n;
            print_inorder(i, tree);
            break;
        }

    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 05:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表