def inorder(v):
    if v == 0:
        return
    # 전위순회

    inorder(L[v])
    # 중위순회

    inorder(R[v])
    # 후위순회
복사했습니다!