找到pset3“\预期退出代码为0,而不是1”

时间:2017-01-26 20:54:34

标签: c find binary-search cs50

StackOverflow上所有强大的CS50ers社区!

我已经对pset3的排序和搜索功能进行了编码,查找,但我只是不明白我收到此消息的原因。就像在while循环中第一个if从未执行过一样。

任何提示?

#include <cs50.h>

bool search(int value, int values[], int n)
{    
    if (n < 1)
    {
        return false;
    }   
    else
    {   
        int start = 0, end = (n-1);
        while (end >= start)
        {   
            int median = (end - start) / 2;
            if (median == value)
            {
                return true;
            }
            else if (values[median] < value)
            {
                start = values[median + 1];
            }
            else 
            {
                end = values[median - 1];
            }
        }
    return false;
    }
}

void sort(int values[], int n)
{
    int temp;
    for (int i = 0; i < n; i++)
    {
        int smallest_index = i;
        for (int j = i + 1; j < n; j++)
        {
            if (values[i] > values[j])
                smallest_index = j;
        }
    temp = values[smallest_index];
    values[smallest_index] = values[i];
    values[i] = temp; 
    }
}

Click Here to See Error Message from Check50

0 个答案:

没有答案