class BinaryTree: """ A Binary Tree, i.e. arity 2. """ def __init__(self, data, left=None, right=None): """ Create BinaryTree self with data and children ...
確定! 回上一頁