X Tutup
/** * Definition for binary tree with next pointer. */ public class TreeLinkNode { public int val; public TreeLinkNode left, right, next; public TreeLinkNode(int x) { val = x; } }
X Tutup