0

这是我的代码。

def trin_search(A,first,last,target):
    #returns index of target in A, if present
    #returns -1 if target is not present in A
    if first>last:
        return -1
    else:
        one_third=first+(last-first/3)
        two_thirds=first+2*(last-first)/3
        if A[one_third]==target:
            return one_third
        elif A[one_third]>target:
            #search the left-hand third
            return trin_search(A,first, one_third-1],target)
        elif A[two_thirds]==target:
            return two_thirds
        elif A[two_thirds]>target:
            #search the middle third
            return trin_search(A,one_third+1,two_thirds-1,target)
        else:
            #search the right-hand third
            return trin_search(A,two_thirds+1,last,target)

这是一个三元递归搜索。我不断收到此错误:

line 24, in trin_search
if A[one_third]==target:IndexError: list index out of range

但我无法想象为什么。这是我在 shell 中运行程序的方式:

>>>> A=[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]
>>>> trin_search(A,A[0],A[len(A)-1],5)

任何帮助深表感谢。

4

1 回答 1

2

问题出在线路上one_third=first+(last-first/3)。在这里,first == 1sofirst/3 == 0和表达式变为first+last21 和 so 显然超出了范围。你想要的表达式是first+(last-first)/3. (您的代码中还有一些其他问题,例如使用列表中的值而不是索引调用函数。)

于 2013-01-18T17:49:36.200 回答