#include
#include
#include
#define MAX_LENGTH 100
/*Show usage*/
void usage(char * prog)
{
printf("%s Usage:\n", prog);
printf("%s \n", prog);
}
/*Generate and initialize the list*/
int * generate_list(int count)
{
int i;
int * list;
list = (int *)malloc(count*sizeof(int));
if(list == NULL)
{
perror("malloc");
return NULL;
}
/*Initialize the list with integers less than 100*/
srandom((unsigned int)time(NULL));
for (i = 0; i < count ; i ++)
list[i] = random()%100;
return list;
}
/*Show the list*/
void show_list(int * list, int length)
{
int i;
for(i = 0; i < length; i ++)
printf("%d ", list[i]);
printf("\n");
}
/*algorithm*/
void insert_sort(int * list, int length)
{
int i, j, temp;
for(i = 1; i < length; i ++)
{
temp = list[i];
j = i - 1;
while((list[j] > temp)&&(j >= 0))
{
list[j+1] = list[j];
j --;
}
list[j+1] = temp;
show_list(list, length);
}
}
int main(int argc, char * argv[])
{
int length;
int * list = NULL;
/*Deal with the arguments*/
if(argc != 2)
{
usage(argv[0]);
exit(127);
}
length = atoi(argv[1]);
if(!length || length > MAX_LENGTH)
{
usage(argv[0]);
exit(129);
}
list = generate_list(length);
if(list == NULL)
exit(128);
else
{
show_list(list, length);
insert_sort(list, length);
}
free(list);
return 1;
}
阅读(2087) | 评论(0) | 转发(0) |