import copy NodeA = TreeNode('A') NodeB = TreeNode('B') NodeA.left = NodeB print(NodeA) NodeC = copy.copy(NodeA) print(NodeC) print('淺 ...
確定! 回上一頁