我的插入排序的實現似乎與排序第一個元素的例外。我在這裏有一個小測試用例。任何人都可以告訴我我的算法有什麼問題嗎?插入排序不排序的第一個元素?
#include <iostream>
#include <string>
#include <stdlib.h>
using namespace std;
void Insert(int *S, int k)
{
int key = S[k];
int j = k-1;
while(j>0 && S[j] > key)
{
S[j+1] = S[j];
j--;
}
S[j+1] = key;
}
void Insertionsort(int S[], int n)
{
if(n>1)
Insertionsort(S,n-1);
Insert(S,n);
}
int main()
{
srand (time(NULL));
int S1_8[8];
for(int i=0; i<8; i++)
S1_8[i] = rand()%100;
Insertionsort(S1_8,8);
for(int i=0; i<8; i++)
{
cout << S1_8[i] << endl;
}
return 0;
}
它並不能說明問題,但肯定是有問題在最後一次迭代中,當調用「Insert(S,8)」時。根據將要訪問S [8]的'Insert'函數的定義,這是一個不存在的元素。 – jogojapan