搜索资源列表
-
0下载:
一种基于VC的折半查找方法源代码,对VC初学者有用-a VC-based binary search method source code, useful for beginners VC
-
-
0下载:
4. 建立一个有序的顺序表(10,30,35,50,56,100,120),用折半查找方法在此表中查找任一整数,若找到则输出此整数在表中的位置序号,否则输出Not found.-4. Establish an orderly sequence (10,30,35,50,56,100,120) using binary search method in this table as a whole you, if the output is found in this round table pos
-
-
0下载:
编写查找程序search,功能如下:给定任意有序数列,然后输入任意一数,用折半查找法找出该数在数列中的位置,若数列中有此数,则返回该数在数列中所在的位置,若数列中无此数,则返回-1 把给定值y插入到有序数组a(由大到小)中,插入后,数组中的数仍然有序 用递推法求解:一串字符以问号“?”结尾,顺序读入后反向输出,且统计其中字符的个数-prepare you search procedures, functions as follows : Given a series of arbitrary o
-
-
0下载:
非递归调用的二叉查找法:初始化一个数组,提示输入待查元素,返回查找的结果和查找次数-non - recursive call the binary search method : an array initialization, suggesting that the importation of unknown origin elements, return to the search results and the number of search
-
-
0下载:
提高输入容错。判断输入的对错。 时间关系,搜索功能为线性搜索,现增强如下:f_search:费氏查找法;btree:二叉树查找法;l_search:线性查找法; r_search:递归折半查找法;zcsear:杂凑碰撞查找法;o_sear:插补查找加强法; 排序是冒泡法,现增强为:heaps:累堆排序;binary:二叉树排序;xieer:谢耳排序;sinsert:插入排序;quicks:快速排序;select:选择排序法;-increase input fault tolerance. Imp
-
-
0下载:
折半查找算法,实现对于一组数据的查找操作,利用折半查找法进行查找-binary search algorithm, to achieve a set of data for the search operation, the use of binary search method you
-
-
0下载:
问题的提出:编写程序对数据序列采用二分查找法和顺序查找法查找元素的下标,要求使用类模板实现(其中二分法查找算法要求用递归实现,给定数据序列有序)。-Of the problem: the preparation of procedures for the data sequence using binary search method and the order of search law search element subscr ipt, require the use of class t
-
-
0下载:
这般查找法又称二分查找法,这种方法对待查找的列表有两个要求:(1)必须采用顺序存储结构;(2)必须按关键字大小有序排列-Find such a law, also known as binary search method, this approach to find a list of treatment there are two requirements: (1) must be in the order of the storage structure (2) must be arra
-
-
0下载:
查找表源码,其中包含两个独立的程序:
(1)哈希(Hash)表操作测试程序
(2)二分查找法测试程序
用C语言编译器编译后可以直接运行,功能包括查找、插入、删除等操作。-Source code look-up table, which contains two separate procedures: (1) hash (Hash) table testing procedures (2) binary search method to test the procedure usin
-
-
0下载:
数据库的数据项主要数据包括:学号、姓名、年级、专业、成绩a、成绩b、成绩c、平均成绩、总成绩。要求具有以下功能:
(1)系统以菜单方式工作。
(2)显示、保存记录;添加、删除、修改任意多个记录。
(3)排序功能:打开学生数据库,计算每个学生的平均成绩和总成绩,用冒泡法或选择排序法将平均成绩和总成绩排序后,生成两个新文件(从大到小),存盘并显示这两个文件的全部记录。
(4)查询功能:打开总成绩排序文件,用折半查找法统计出给定分数的人数并显示。并能按学号或姓名查找并
-
-
0下载:
折半插入排序,在直接插入排序时,插入位置是通过折半查找法确定的。-Binary insertion sort, in the direct insertion sort, the insertion position is determined by binary search method.
-
-
0下载:
折半查找法(在一个给定的数组中有没有给定的数)。-Binary search method (in a given array, there is no number given).
-
-
0下载:
二分查找是数据结构中的一种重要查找方法,它可以缩短查找时间-Binary search is the data structure is a kind of important search method, it can shorten find time
-
-
0下载:
折半查找法,15个数的任意输入,排序后查找出要的数!-Binary search method, 15 the number of arbitrary input and want to find out the number of the sort!
-
-
0下载:
数据结构的算法集合,包含哈希表查找法与折半查找法-The collection of data structure of the algorithm contains a hash table lookup method and binary search method
-
-
0下载:
编写程序对数据序列采用二分查找法和顺序查找法查找元素的下标,要求使用类模板实现-Write a program for data sequences using binary search and sequential search method to find the elements under standard requires the use of class templates
-
-
0下载:
实 现 二 分查找法,有简单的使用列子。-Realization of binary search method, there is a simple to use examples.
-
-
0下载:
使用二分搜索方法,实现以下功能函数。
函数bisearch(R:列表,低,高,tkey:整数):整数
tkey是尚未被搜索的关键字值。如果tkey是在排序表R中,返回关键字的值的地址(或下标),否则,返回0。此外,当n =10时形成对半搜索二叉判定树。-Using the binary search method to achieve binary search
-
-
0下载:
This program provides a search to your array by Binary Search Method .
-
-
0下载:
折半查找法是效率较高的一种查找方法。假设有已经按照从小到大的顺序排列好的五个整数a0~a4,要查找的数是X,其基本思想是: 设查找数据的范围下限为l=1,上限为h=5,求中点m=(l+h)/2,用X与中点元素am比较,若X等于am,即找到,停止查找;否则,若X大于am,替换下限l=m+1,到下半段继续查找;若X小于am,换上限h=m-1,到上半段继续查找;如此重复前面的过程直到找到或者l>h为止。如果l>h,说明没有此数,打印找不到信息,程序结束。(The method of bin
-