二进制搜索的递归函数

时间:2010-04-15 18:46:28

标签: c++ recursion binary-search

为二进制搜索创建递归函数 此函数接受已排序的数组和要搜索的项,并返回项的索引(如果项在数组中),或返回-1(如果项不在数组中)。
此外,编写测试程序来测试您的功能。

template <class elemType>
int orderedArrayListType<elemType>::binarysearch
                                (const elemType& item) const
{
    int first= 0;
    int last = length -1;
    int mid;
    int list[];
    int BinarySearch(,Type & Item, int first, int last)
    bool found = false;
    while (first <= last && !found){
        mid = (first + last) / 2;
        if (list[mid] > item)
            return BinarySearch(list, item, first, mid -1)
        found = true;
        else if (list[mid] > item)
            return BinarySearch( list, item, first, mid -1)
            last = mid - 1;
        else 
            first = mid + 1;
    }
    if (found)
        return mid;
    else 
        return -1;
}

3 个答案:

答案 0 :(得分:7)

在美国有一个孩子的游戏,其中一个孩子选择1到10之间的数字,而另一个孩子必须猜测这个数字。如果他们猜错了,第一个孩子会说“更高”或“更低”。

大多数孩子开始随机猜测,平均需要4-5次尝试才能成功。我意识到(这可能就是我最终进入计算机科学的原因),最好的办法是选择中点(5.5,所以选择5或6.我会选择5)。根据他们的说法(“更高”或“更低”),选择新的范围,1-4或6-10。选择该范围中间的数字(2或8)。继续将范围分成两半,直到得到数字。

这是对已排序数组的二进制搜索(排序数组为1到10之间的数字)。

要在代码中实现它,只需继续执行上述相同的过程。选择范围的中点,并根据答案创建新范围。

这是one solution in Java这样做的回事:

public class BinarySearchRecursive
{
    public static final int NOT_FOUND = -1;

    /**
     * Performs the standard binary search
     * using two comparisons per level.
     * This is a driver that calls the recursive method.
     * @return index where item is found or NOT_FOUND if not found.
     */
    public static int binarySearch( Comparable [ ] a, Comparable x )
    {
        return binarySearch( a, x, 0, a.length -1 );
    }

    /**
     * Hidden recursive routine.
     */
    private static int binarySearch( Comparable [ ] a, Comparable x,
                                     int low, int high )
    {
        if( low > high )
            return NOT_FOUND;

        int mid = ( low + high ) / 2;

        if( a[ mid ].compareTo( x ) < 0 )
            return binarySearch( a, x, mid + 1, high );
        else if( a[ mid ].compareTo( x ) > 0 )
            return binarySearch( a, x, low, mid - 1 );
        else
            return mid;
    }

    // Test program
    public static void main( String [ ] args )
    {
        int SIZE = 8;
        Comparable [ ] a = new Integer [ SIZE ];


    for( int i = 0; i < SIZE; i++ )
        a[ i ] = new Integer( i * 2 );

    for( int i = 0; i < SIZE * 2; i++ )
        System.out.println( "Found " + i + " at " +
                                 binarySearch( a, new Integer( i ) ) );
    }
}

答案 1 :(得分:3)

您还可以google“递归二分搜索”和voila

编辑 - 维基百科知道所有(特别是涉及到cs):

  

最直截了当   [二进制搜索算法]的实现是递归的,其中   递归搜索子范围   由比较决定:

   BinarySearch(A[0..N-1], value, low, high) {
       if (high < low)
           return -1 // not found
       mid = low + ((high - low) / 2) 
       if (A[mid] > value)
           return BinarySearch(A, value, low, mid-1)
       else if (A[mid] < value)
           return BinarySearch(A, value, mid+1, high)
       else
           return mid // found
   }

答案 2 :(得分:-1)

只需使用std::binary_search即可。告诉导师,函数实际上是在your_favorite_compiler中递归实现的。