排序h之直接插入排序(OJ题目)

问题及描述:

3058: 算法设计:直接插入排序

Time Limit: 1 Sec   Memory Limit: 128 MB
Submit: 59   Solved: 22
[ Submit][ Status][ Web Board]

Description

算法设计:实现直接插入排序。void InsertSort(RecType R[],int n)为对R[0..n-1]按递增有序进行直接插入排序。主函数已经给出。

注意:只提交void InsertSort(RecType R[],int n) //R[0..n-1]部分。


#include  
#define MAXE 20         //线性表中最多元素个数 
typedef int KeyType; 
typedef char InfoType[10]; 
typedef struct          //记录类型 

    KeyType key;        //关键字项 
    InfoType data;      //其他数据项,类型为InfoType 
} RecType;

int main() 

    int i,k,n; 
    KeyType a[100]; 
    RecType R[MAXE]; 
    scanf("%d",&n); 
    for (i=0; i         scanf("%d",&a[i]); 
  
    for (i=0; i         R[i].key=a[i]; 
    printf("初始关键字: ");      //输出初始关键字序列 
    for (k=0; k         printf("%3d",R[k].key); 
    printf("\n"); 
    InsertSort(R,n); 
    printf("最后结果: ");       //输出初始关键字序列 
    for (k=0; k         printf("%3d",R[k].key); 
    printf("\n"); 
    return 0; 

Input

输入带排序元素的个数

输入待排序的整数

Output

输出初识数据

输出排序后的数据

Sample Input

10 
9 2 7 5 6 4 8 3 1 0

Sample Output

初始关键字:   9  2  7  5  6  4  8  3  1  0
最后结果:   0  1  2  3  4  5  6  7  8  9

void InsertSort(RecType R[],int n)
{
    KeyType t;//哨兵
    int i,j;
    for(i=1;i=0&&R[j].key>t;j--)
{
    R[j+1].key=R[j].key;
}
R[j+1].key=t;
}
}

对于直接插入排序有了一定的理解,即将第一个视为有序,第二个开始,若第二个小于第一个,则交换,第三个的话分别于前两个比较,确定其合适的插入位置,当执行到最后j变为-1;R【j+1】即为第一项。

你可能感兴趣的:(排序h之直接插入排序(OJ题目))