-->
当前位置:首页 > 题库 > 正文内容

程序填空题:直接插入排序

Luz4年前 (2021-05-10)题库4777
直接插入排序。

```c++
#include
#define MAXSIZE 1000
using namespace std;

typedef struct
{
 int key;
 char *otherinfo;
}ElemType;

typedef struct
{
 ElemType *r;
 int length;
}SqList;

void InsertSort(SqList &L)
{
 int i,j;
 for(i=2;i<=L.length;++i)
   if(L.r[i].key   {
    L.r[0]=L.r[i];
    L.r[i]=L.r[i-1];
    for(@@[j=i-2](2); @@[L.r[0].key      @@[L.r[j+1]=L.r[j]](2);
    L.r[j+1]=L.r[0];
   }
}

void Create_Sq(SqList &L)
{
 int i,n;
 cin>>n; //输入的值不大于 MAXSIZE
 for(i=1;i<=n;i++)
 {
  cin>>L.r[i].key;
  L.length++;
 }
}
void show(SqList L)
{
 int i;
 for(i=1;i<=L.length;i++)
  if(i==1)
   cout<  else
   cout<<" "<}

int main()
{
SqList L;
L.r=new ElemType[MAXSIZE+1];
L.length=0;
Create_Sq(L);
InsertSort(L);
show(L);
return 0;
}
```
### 输入样例:
第一行输入一个数n(输入的值不大于 MAXSIZE),接下来输入n个数。

```in
7
24 53 45 45 12 24 90
```

### 输出样例:
输出排序结果。
```out
12 24 24 45 45 53 90
```






答案:
第1空:j=i-2

第2空:L.r[0].key
第3空:L.r[j+1]=L.r[j]

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。