LC: 1490. Clone N ary Tree
https://leetcode.com/problems/clone-n-ary-tree/
1490. Clone N-ary Tree
Given a root of an N-ary tree, return a deep copy (clone) of the tree.
Each node in the n-ary tree contains a val (int) and a list (List[Node]) of its children.
class Node {
public int val;
public List<Node> children;
}Nary-Tree input serialization is represented in their level order traversal, each group of children is separated by the null value (See examples).
Example 1:

Example 2:

Constraints:
The depth of the n-ary tree is less than or equal to
1000.The total number of nodes is between
[0, 104].
Follow up: Can your solution work for the graph problem?
The Essence:
Die Datenstruktur Baum ist rekursiv definiert. Um einen Baum aus seiner Wurzel zu klonen, braucht man auch die Kinder dieser Wurzel als Bäume zu klonen.
Details:
Zuerst ist der Wurzel geklont. Dann sind ihre Kinder mit derselben Methode geklont. Danach fügt man die geklonte Bäume aus den Kinderknoten als Kinder zu dem geklonten Wurzelknoten zu.
Solution(s):
Default Code:
Last updated