我的mergesort函数吐出0而不是命令我的列表

时间:2013-03-17 04:45:00

标签: c++ mergesort

我正在尝试制作Mergesort功能,似乎无法理解为什么我的列表打印出“00000100000”。我有一种感觉,它可能是我正在通过的辅助阵列,但如果可能的话,我想将它保存在我的代码中。这是我的代码:

void merge(int arr[], int aux[], int low, int mid, int high)
{
    int leftStart = low;
    int rightStart = mid+1;
    int auxIndex = low;
    int start = low;

while(leftStart<=mid && rightStart<= high)
{

    if(arr[leftStart]>=arr[rightStart])
    {
        aux[auxIndex] = arr[rightStart];
        auxIndex++;
        rightStart++;
    }
    else
        aux[auxIndex] = arr[leftStart];
        auxIndex++;
        leftStart++;
}
if(leftStart>mid)
{
    for(;rightStart<=high; rightStart++)
    {
        aux[auxIndex] = arr[rightStart];
    }
}
if(rightStart>high)
{
    for(;leftStart<=high; leftStart++)
    {
        aux[auxIndex] = arr[rightStart];
    }
}
for(; start <= high; start++)
    arr[start]=aux[start];
}

void mergeSort(int arr[], int aux[], int low, int high)
{
    int mid;
    if(low<high)
    {
    mid=(low+high)/2;
    mergeSort(arr, aux, low, mid);
    mergeSort(arr, aux, mid+1, high);
    merge(arr,aux, low, mid, high);
    }
}


int main(int argc, char *argv[]) {
int arr[20]={6,4,3,2,1,7,8,9,5,6,7,5};
for(int i = 0; i<12; i++)
    cout<<arr[i];
int aux[20];
mergeSort(arr, aux, 0, 12);
for(int i = 0; i<12; i++)
    cout<<arr[i];
    return 0;
}

1 个答案:

答案 0 :(得分:1)

valgrind或同等分析工具下运行您的程序。您会发现代码中存在与数组访问相关的直接错误。