二分探索木の項目より少ない数を数える関数があります。正常に動作しています。しかし、再帰呼び出しごとに0にリセットされるため、ローカル変数カウントが合計を記憶できる理由がわかりません。
def count_less(self, item):
"""(BST, object) -> int
Return the number of items in BST that less than item.
"""
return BST.count_less_helper(self.root, item)
# Recursive helper function for count_less.
def count_less_helper(root, item):
count = 0
if root:
if root.item < item:
count += 1
count += BST.count_less_helper(root.left, item)
count += BST.count_less_helper(root.right, item)
elif root.item > item:
count += BST.count_less_helper(root.left, item)
return count