qiaoshun8888 / Algorithm
Algorithm Practices
Algorithm Practices
::
class TreeNode {
public int val;
public TreeNode left;
public TreeNode right;
public TreeNode parent;
public TreeNode (int x){
self.val = x;
}
}
zhouxin created at 10 years, 8 months ago