0

是否可以进行使用冒泡排序对其进行排序的二进制搜索?

这是我的冒泡排序和二分搜索。我如何将它们结合起来?

int Search_for_Client (int cList[], int low, int high, int target) {
    int middle;
    while (low <= high) {
        middle = low + (high - low)/2;
        if (target < cList[middle])
            high = middle - 1;
        else if (target > cList[middle])
            low = middle + 1;
        else
            return middle;
    }
    return -1;
}

int bubbleSort(char cList[], int size) {
    int swapped;
    int p;
    for (p = 1; p < size; p++) {
        swapped = 0;    /* this is to check if the array is already sorted */
        int j;
        for (j = 0; j < size - p; j++) {
            if (cList[j] > cList[j+1]) {
                int temp = cList[j];
                cList[j] = cList[j+1];
                cList[j+1] = temp;
                swapped = 1;
            }
        }
        if (!swapped)
        {
            break; /*if it is sorted then stop*/
        }
    }
}
4

2 回答 2

1

首先,修复您的代码以便编译。例如,bubbleSort声明为返回 int 但您不返回任何内容。

然后做这样的事情:

#include <stdio.h>

// *** paste your code here

int main(int argc, char *argv[])
{
    char data[11] = { 'z', 'y', 'x', 'w', 'v', 'u', 't', 's', 'r', 'q', 'p' };
    int foundIt;

    bubbleSort(data, 11);
    foundIt = Search_for_Client(data, 0, 10, 'w');
    if (foundIt >= 0)
       printf("Found 'w' at index %d\n", foundIt);
    else
       printf("Did not find 'w'\n");
}
于 2013-04-04T20:44:36.980 回答
0

是的,您可以使用冒泡排序对数组进行排序,然后对生成的排序数组使用二进制搜索。

然而,值得注意的是,有比冒泡排序更有效的排序方法。

于 2013-04-04T20:21:08.070 回答