王道数据结构第20页第九题

题目要求:
在这里插入图片描述
代码实现:

#include<stdio.h>

#define MaxSize 20
#define ElemType int 
typedef struct{
	ElemType data[MaxSize];
	int Length;
}SqList;
SqList L;

void InitList(SqList &L)
{
	for(int i=0;i<MaxSize;i++)L.data[i]=0;
	L.Length=0;
}

void InsertList(SqList &L,int i,ElemType e)
{
	if(i<1||i>(L.Length+1))return;
	if(L.Length>=MaxSize)return;
	for(int j=L.Length;j>=i;j--)
	{
		L.data[j]=L.data[j-1];
	}
	L.data[i-1]=e;
	L.Length++;
	return;
}

void Exchange(ElemType &a,ElemType &b)
{
	ElemType temp;
	temp=a;
	a=b;
	b=temp;
}

void Insert(ElemType *A,int high,int length,ElemType x)
{
	int i;
	for(i=length-1;i>high;i--)A[i+1]=A[i];
	A[i+1]=x;
}

//用最少的时间在表中查找数值为27的元素:
void SearchExchangeInsert(ElemType A[],ElemType x,int length)
{
	int low=0,high=length-1,mid;
	while(low<=high)
	{
		mid=(low+high)/2;
		if(A[mid]==x)break;
		else if(A[mid]<x)low=mid+1;
		else if(A[mid]>x)high=mid-1;
	}
	if(A[mid]==x&&mid!=(length-1))
	{
		Exchange(A[mid],A[mid+1]);
	}
	if(low>high)
	{
		Insert(A,high,length,x);
		L.Length++;
	}
}

void ShowList(SqList L)
{
	printf("输出整个线性表:\n");
	for(int i=0;i<L.Length;i++)printf("%d ",L.data[i]);
	printf("\n");
}

int main()
{
	int e,i=1;
	InitList(L);
	
	printf("输入线性表的值:\n");
	while(scanf("%d",&e)!=EOF)
	{
		InsertList(L,i,e);
		i++;
	}
	
	//用最少的时间在表中查找数值为27的元素:
	SearchExchangeInsert(L.data,27,L.Length);
	
	ShowList(L);
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值