Что происходит, когда функция pre_order_print вызывается дважды непрерывно?
Это код (часть печати BST)
def pre_order_print(self, root): if not root: return print root.data self.pre_order_print(root.left) self.pre_order_print(root.right)