Невозможно добавить новый элемент (узел) в ArrayList
Node N = new Node(5,"Sandeep");
Node N1 = new Node(5,"qwert");
В строке ниже я получаю исключение нулевого указателя
N.children.add(N1)
Код:
class Node {
public int val;
public String data;
public ArrayList<Node> children;
public Node(int val, String data) {
this.val = val;
this.data = data;
ArrayList<Node> children = new ArrayList<Node>();
}
}
public class Nary {
public static void main(String[] args) {
// ArrayList<Node> children = new ArrayList<Node>();
Node N = new Node(5,"Sandeep");
Node N1 = new Node(5,"qwert");
N.children.add(N1);
}
}