| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2162 人关注过本帖, 1 人收藏
标题:折半查找 、顺序查找 、 分块查找 的实现方法
只看楼主 加入收藏
chinahgcq
Rank: 1
等 级:新手上路
帖 子:35
专家分:0
注 册:2007-6-4
收藏(1)
 问题点数:0 回复次数:2 
折半查找 、顺序查找 、 分块查找 的实现方法

下面的链接是源代码,愿意看的点击下载,到C++ 里面运行就是

jJQVyPht.txt (2.11 KB) 折半查找 、顺序查找 、 分块查找 的实现方法




以下是源代码
#include "iostream"
#include "math.h"
using namespace std;
#define MAXSIZE 200
typedef int KeyType;
typedef int DataType;
typedef struct
{
KeyType key;
DataType data;
}NodeType;
typedef NodeType SeqList[MAXSIZE];


void SeqSearch(SeqList S,int n,KeyType k)
{
for(int i=0;i<n&&S[i].key!=k;i++);
if(i<n)
{
cout<<"该数在第 "<<i+1<<" 位"<<endl;
cout<<"顺序查找次数为"<<i<<endl;
}
else
{
cout<<"The number is not exist!SeqSearch has searched "<<i<<" times"<<endl;
}

}

void BinSearch(SeqList S,int n,KeyType k)
{
int low=0,high=n-1,mid,num=0;
while(low<=high)
{
mid=(low+high)/2;
num++;
if(S[mid].key==k)
{
cout<<"折半查找次数为 "<<num<<endl;
exit(0);
}

else if(S[mid].key<k)
low=mid+1;
else
high=mid-1;
}
cout<<"The number is not exist!BinSearch has searched "<<num<<" times"<<endl;
}

void AreaSearch(SeqList S,int n,KeyType k)
{
int length=sqrt(n);//分块的块长
bool check=false;//查到与否的标志
int b=n%length==0?0:1;
int num=n/length+b;//分的组数
for(int i=0;i<num;i++)
{
int NUM=(i*num+num)<=n?(i*num+num):n;
if(k<S[NUM].key)
{
for(int j=i*num;j<(NUM)&&k!=S[j].key;j++);
if(j<(NUM))
{
cout<<"分块查找次数为 "<<(i+j-i*num+1)<<endl;
check=true;
break;
}
else
{
cout<<"The number is not exist!AreaSearch has searched "<<(i+j-i*num+1)<<" times"<<endl;
check=true;
break;
}
}
else if(k==S[NUM].key)
{
cout<<"分块查找次数为 "<<i+1<<endl;
check=true;
break;
}
}
if(!check)
cout<<"没有找到!分块查找次数为 "<<i+1<<endl;


}

void Init(SeqList &Q,int &m,int &n)
{

while(m>MAXSIZE||m<0)
{
cout<<"请输入数组的长度(不要超过"<<MAXSIZE<<"):";
cin>>m;
}
cout<<endl;
for(unsigned i=0;i<m;i++)
{
Q[i].key=i;
cout<<Q[i].key<<" ";
if((i+1)%10==0)
cout<<endl;
}
cout<<endl<<"请输要查找的数据:";
cin>>n;


}
void main()
{
SeqList Q;
int n;//number you want to find
int m;//length of array
Init(Q,m,n);
SeqSearch(Q,m,n);
AreaSearch(Q,m,n);
BinSearch(Q,m,n);

}

搜索更多相关主题的帖子: 源代码 顺序 折半 分块 
2007-07-06 13:57
vfdff
Rank: 6Rank: 6
等 级:侠之大者
威 望:8
帖 子:2172
专家分:425
注 册:2005-7-15
收藏
得分:0 
有长度限制 不是很爽
应该长度动态可以变 才比较好
2008-06-12 00:58
vfdff
Rank: 6Rank: 6
等 级:侠之大者
威 望:8
帖 子:2172
专家分:425
注 册:2005-7-15
收藏
得分:0 
不知道您使用什么编译
我现在修改了 能在 cfree下

jJQVyPht.rar (1.37 KB) cfree下

2008-06-12 01:00
快速回复:折半查找 、顺序查找 、 分块查找 的实现方法
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.034608 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved