跟踪选择排序中的交换次数和比较

时间:2018-03-05 07:50:33

标签: c++ function insertion-sort

我需要能够跟踪此选择排序算法中的交换次数和比较次数。该算法对数组进行了很好的排序。我需要修改它以跟踪交换的数量。

void insertion_sort(int * theArray, int size)
{
   int tmp;
   for (int i = 1; i < size; i++) 
   {
        for (int j = i; j > 0 && theArray[j - 1] > theArray[j]; j--) 
        {
        tmp = theArray[j];
        theArray[j] = theArray[j - 1];
        theArray[j - 1] = tmp;
        }
    }
}

以下是两个辅助函数

bool inOrder(int i, int j) {
   numComparisons++;
   return i <= j;
}


void swapElement(int & i, int & j) {
    int t = i;
    i = j;
    j = t;
    numSwaps++;
}

1 个答案:

答案 0 :(得分:0)

那样的东西?

void insertion_sort(int * theArray, int size)
{
   int tmp;
   int count = 0;
   for (int i = 1; i < size; i++) 
   {
        for (int j = i; j > 0 && theArray[j - 1] > theArray[j]; j--) 
        {
        tmp = theArray[j];
        theArray[j] = theArray[j - 1];
        theArray[j - 1] = tmp;
        count++; // increment on each loop/exchanges
        }
    }
}