如有java 描述二叉树的类 public class Node{ private Node left; private Node right; private Node parent; //getters and setters } 深度拷贝此类型对象时如何处理parent引用? 查看完整描述