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

问题:

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

HINT

请使用C++编译并提交


Source

zsp

直接插入排序思路:先将第一个元素作为有序组,后面的元素作无序组,然后不断从无序组中拿出元素,插入到有序组中,并保证有序组中是有序的,最后得到有序序列。

图示(来自百度百科):

oj 3058: 算法设计:直接插入排序_第1张图片

此题代码:

#include 
#define MAXE 20         //线性表中最多元素个数
typedef int KeyType;
typedef char InfoType[10];
typedef struct          //记录类型
{
    KeyType key;        //关键字项
    InfoType data;      //其他数据项,类型为InfoType
} RecType;
void InsertSort(RecType R[],int n);
void InsertSort(RecType R[],int n)
{
    int t,i,j;
    for(i=1; i=0 && R[j].key>t; j--)
            {
                R[j+1].key=R[j].key;
            }
            R[j+1].key=t;
        }
    }
}
int main()
{
    int i,k,n;
    KeyType a[100];
    RecType R[MAXE];
    scanf("%d",&n);
    for (i=0; i

运行:

oj 3058: 算法设计:直接插入排序_第2张图片

兴致勃勃的去提交,结果被告知编译错误。。。。。。

仔细一看才发现。。。。

oj 3058: 算法设计:直接插入排序_第3张图片

我能怎么办......我也很无奈啊.......

小结:学习了直接插入排序。

你可能感兴趣的:(YTU_OJ,排序)