Skip to main content
Back to problems
#431
Hard Algorithms

Encode n ary tree to binary tree

Tree Depth-First Search Breadth-First Search Design Binary Tree
80.6% acceptance
Mar 31, 2026
538
30
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. Nary-Tree input serialization is represented in their level order traversal, each group of children is separated by the null value (See following example). For example, you may encode the following 3-ary tree to a binary tree in this way: Input: root = [1,null,3,2,4,null,5,6] 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.

Solution

C++
Time O(n)
Space O(1)
LeetCode
solution.cpp
/*
// Definition for a Node.
class Node {
public:
  int val;
  vector<Node*> children;

  Node() {}

  Node(int _val) {
    val = _val;
  }

  Node(int _val, vector<Node*> _children) {
    val = _val;
    children = _children;
  }
};
*/

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */

class Codec {
public:
  // Encodes an n-ary tree to a binary tree.
  // Left-child right-sibling representation
  TreeNode* encode(Node* root) {
    if (!root) return nullptr;
    TreeNode* bRoot = new TreeNode(root->val);
    if (!root->children.empty()) {
      bRoot->left = encode(root->children[0]);
    }
    TreeNode* cur = bRoot->left;
    for (int i = 1; i < (int)root->children.size(); i++) {
      cur->right = encode(root->children[i]);
      cur = cur->right;
    }
    return bRoot;
  }
  
  // Decodes your binary tree to an n-ary tree.
  Node* decode(TreeNode* root) {
    if (!root) return nullptr;
    Node* nRoot = new Node(root->val);
    TreeNode* cur = root->left;
    while (cur) {
      nRoot->children.push_back(decode(cur));
      cur = cur->right;
    }
    return nRoot;
  }
};

// Your Codec object will be instantiated and called as such:
// Codec codec;
// codec.decode(codec.encode(root));