二进制搜索与冒泡排序

时间:2013-04-04 20:17:14

标签: c binary-search bubble-sort

是否可以使用冒泡排序对其进行排序?

这是我的冒泡排序和二进制搜索。我如何组合它们?

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*/
        }
    }
}

2 个答案:

答案 0 :(得分: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");
}

答案 1 :(得分:0)

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

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