内容:
编写一个程序输出在顺序表(3,6,2,10,1,8,5,7,4,9)中采用顺序查找方法查找关键字5的过程。实现带哨兵的顺序查找算法。
查找实验算法中使用到顺序表,为此编写seqlist.cpp程序。它包含顺序表类型声明和相关运算算法。
程序:
#include
#include
#define maxl 100
typedef int KeyType;
typedef char InfoType;
using namespace std;
typedef struct{
KeyType key;
InfoType data;
}RecType;
void CreateList(RecType R[],KeyType keys[],int n){
for(int i=0;i<n;i++){
R[i].key=keys[i];
}
}
void DispList(RecType R[],int n){
for(int i=0;i<n;i++){
cout<<R[i].key<<" ";
}
cout<<endl;
}
//----------------------------------------------------------------
#include"seqlist.cpp"
int SeqSearch(RecType R[],int n,KeyType k){
int i=0;
R[n].key=k;
while(R[i].key!=k){
cout<<R[i].key<<" ";
i++;
}
if(i>=n)return 0;
else{
cout<<R[i].key;
return i+1;
}
}
int main(){
RecType R[maxl];
int n=10,i;
KeyType k=5;
int a[]={
3,6,2,10,1,8,5,7,4,9};
CreateList(R,a,n);
cout<<"关键字序列:";DispList(R,n);
cout<<"查找"<<k<<"所比较的关键字:\n\t";
if((i=SeqSearch(R,n,k))!=0){
cout<<"\n元素"<<k<<"的位置是"<<i<<endl;
}else{
cout<<"\n元素"<<k<<"不在表中"<<endl;
}
return 1;
}
内容:
编写一个程序输出在顺序表(1,2,3,4,5,6,7,8,9,10)中采用折半查找方法查找关键字9的过程。
程序:
#include"seqlist.cpp"
int BinSearch(RecType R[],int n,KeyType k){
int low=0,high=n-1,mid,count=0;
while(low<=high){
mid=(low+high)/2;
printf(" 第%d次比较:在[%d,%d]中比较元素R[%d]:%d\n",
++count,low,high,mid,R[mid].key);
if(R[mid].key==k)
return mid+1;
if(R[mid].key>k)
high=mid-1;
else
low=mid+1;
}
return 0;
}
int main(){
RecType R[maxl];
KeyType k=9;
int a[]={
1,2,3,4,5,6,7,8,9,10},i,n=10;
CreateList(R,a,n);
cout<<"关键词序列:";DispList(R,n);
printf("查找%d的比较过程如下:\n",k);
if((i=BinSearch(R,n,k))!=-1)
printf("元素%d的位置是%d\n",k,i);
else
printf("元素%d不在表中\n",k);
return 1;
}