直接插入排序代碼
#include
using namespace std;
#define NUM 10
void DirectInsert(int *list,int n)
{
int i;
int j;
int x;
for (i=1;i=0;j--)
{
if (list[j]>x)
{
list[j 1] = list[j];
}
else
break;
}
list[j 1] = x;
}
}
void Print(int *list,int n)
{
int i;
for (i=0;i
0條評論