0%

Leetcode431-encodeNaryTreetoBinaryTree

Description

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.

Solution

Basic idea: next level -> left, same level -> right;

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
// Definition for a Node.
class Node {
public int val;
public List<Node> children;

public Node() {}

public Node(int _val,List<Node> _children) {
val = _val;
children = _children;
}
};
*/
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Codec {

// Encodes an n-ary tree to a binary tree.
public TreeNode encode(Node root) {
if (root == null) return null;

TreeNode res = new TreeNode(root.val);
if (root.children.size() > 0)
res.left = encode(root.children.get(0));

TreeNode cur = res.left;
for (int i = 1; i < root.children.size(); i++){
cur.right = encode(root.children.get(i));
cur = cur.right;
}

return res;
}

// Decodes your binary tree to an n-ary tree.
public Node decode(TreeNode root) {
if (root == null) return null;

Node res = new Node(root.val, new ArrayList<>());
TreeNode cur = root.left;
while (cur != null){
res.children.add(decode(cur));
cur = cur.right;
}
return res;
}
}

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