程序填空题:折半插入排序
折半插入排序。
```c++
#include
#define MAXSIZE 1000
using namespace std;
typedef struct
{
int key;
char *otherinfo;
}ElemType;
typedef struct
{
ElemType *r;
int length;
}SqList;
void BInsertSort(SqList &L){
int i,j,low,high,m;
for(i=2;i<=L.length;++i)
{
L.r[0]=L.r[i];
low=1; high=i-1;
while(low<=high)
{
@@[m=(low+high)/2](2);
if(L.r[0].key @@[high=m-1](2);
else
@@[low=m+1](2);
}
for(j=i-1;@@[j>=high+1](2);--j)
L.r[j+1]=L.r[j];
L.r[high+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);
BInsertSort(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空:m=(low+high)/2
第2空:high=m-1
第3空:low=m+1
第4空:j>=high+1
```c++
#include
#define MAXSIZE 1000
using namespace std;
typedef struct
{
int key;
char *otherinfo;
}ElemType;
typedef struct
{
ElemType *r;
int length;
}SqList;
void BInsertSort(SqList &L){
int i,j,low,high,m;
for(i=2;i<=L.length;++i)
{
L.r[0]=L.r[i];
low=1; high=i-1;
while(low<=high)
{
@@[m=(low+high)/2](2);
if(L.r[0].key
else
@@[low=m+1](2);
}
for(j=i-1;@@[j>=high+1](2);--j)
L.r[j+1]=L.r[j];
L.r[high+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<
cout<<" "<
int main()
{
SqList L;
L.r=new ElemType[MAXSIZE+1];
L.length=0;
Create_Sq(L);
BInsertSort(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空:m=(low+high)/2
第2空:high=m-1
第3空:low=m+1
第4空:j>=high+1