在排序的数组中查找旋转点

时间:2011-09-10 04:39:34

标签: c++ arrays binary-search

我试图通过修改后的二进制搜索找到排序数组中的旋转点。

考虑这个数组int values[9]={7, 8, 9, 1, 2, 3, 4, 5, 6}; 这里的旋转点是指数= 3,即9。

我为上面的操作编写了这个函数。

void FindRotationPoint(int values[], int numvalues)
{
    int first =0;
    int last = numvalues-1;
    int middle;
    bool moreTosearch= (first<=last);
    while(first<=last)
    {
        middle = (first+last)/2;
        if(values[0]>values[middle]) //Keep looking right if the middle value in array is greater than first
        {
            last = middle-1;
        }
        if (values[0]<values[middle]) //Keep looking left if the middle value in array is less than first
        {
            first = middle+1;
        }
    }
    cout<<middle+1<<endl;
    cout<<values[middle];
}

如果元素是 int values[9]={7, 8, 9, 1, 2, 3, 4, 5, 6}; 输出:4,(错误)

int values[9]={7, 8, 9, 10, 2, 3, 4, 5, 6}; 输出:4,10 (正确)

发现在均匀位置的旋转点是正确的,而在另一种情况下,它找到了后续元素。我在上面的代码中缺少什么?

2 个答案:

答案 0 :(得分:0)

void FindRotationPoint(int values[], int numvalues)
{
    int first =0;
    int last = numvalues-1;
    int middle;
    bool moreTosearch= (first<=last);
    while(moreTosearch)
    {
        middle = (first+last)/2;
        if(middle == first) break;
        if(values[0]>values[middle]) //Keep looking right if the middle value in array is greater than first
        {
            last = middle;
            moreTosearch= (first<=last);
        }
        if (values[0]<values[middle]) //Keep looking left if the middle value in array is less than first
        {
            first = middle;
            moreTosearch= (first<=last);
        }
    }
}

这应该有用。

答案 1 :(得分:0)

这有效:

void FindRotationPoint(int values[], int numvalues)
{
    int first =0;
    int last = numvalues-1;
    int middle=0;
    bool moreTosearch= (first<=last);
    while(first<last)
    {
        middle = (first+last)/2;
        if(values[first]>=values[middle]) //Keep looking right if the middle value in array is greater than first
        {
            last = middle;
            cout<<"first>middle: "<<first<<" "<<middle<<" "<<last<<"\n";
        }
        else if (values[middle]>=values[last]) //Keep looking left if the middle value in array is less than first
        {
            first = middle;
            cout<<"middle<last: "<<first<<" "<<middle<<" "<<last<<"\n";
        }
    }
    cout<<middle+1<<endl;
    cout<<values[middle];
}

int main()
{
int values[9]={7, 8, 9, 1, 2, 3, 4, 5, 6};

FindRotationPoint(values, 9);
return 0;
}
相关问题