LC 431. Encode N-ary Tree to Binary Tree 【lock,hard】

本文介绍了一种将N-ary树编码为二叉树,并能解码还原回原始N-ary树结构的算法。通过该算法,可以有效解决数据结构之间的转换问题,适用于N在1到1000范围内的N-ary树。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Design an algorithm to encode an N-ary tree into a binary tree and decode the binary tree to get the original N-ary tree. An N-ary tree is a rooted tree in which each node has no more than N children. Similarly, a binary tree is a rooted tree in which each node has no more than 2 children. There is no restriction on how your encode/decode algorithm should work. You just need to ensure that an N-ary tree can be encoded to a binary tree and this binary tree can be decoded to the original N-nary tree structure.

For example, you may encode the following 3-ary tree to a binary tree in this way:

 

 

Note that the above is just an example which might or might not work. You do not necessarily need to follow this format, so please be creative and come up with different approaches yourself.

 

Note:

  1. N is in the range of [1, 1000]
  2. Do not use class member/global/static variables to store states. Your encode and decode algorithms should be stateless.

 

class Codec {
public:

    TreeNode * encode(Node* root) {
        if (!root) return nullptr;
        TreeNode* ret = new TreeNode(root->val);
        TreeNode* tmp = ret;
        if (root->children.size() != 0) {
            tmp->left = encode(root->children[0]);
        }
        tmp = tmp->left;
        for (int i = 1; i < root->children.size(); i++) {
            tmp->right = encode(root->children[i]);
            tmp = tmp->right;
        }
        return ret;
    }
    Node* decode(TreeNode* root) {
        if (!root) return nullptr;
        Node* ret = new Node(root->val, vector<Node*>());
        TreeNode*tmp = root->left;
        while (tmp) {
            ret->children.push_back(decode(tmp));
            tmp = tmp->right;
        }
        return ret;
    }
};

 

转载于:https://www.cnblogs.com/ethanhong/p/10158570.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值