搜索资源列表
二分查找法
- 汇编语言上机第三题:二分查找法,算法是等同于C语言数据结构中的算法.-assembly language on the plane Q3 : two searching method, the algorithm is equivalent to the C language data structure of the algorithm.
KMP查找法
- 方便快捷地实现目标的查找,是高速度的优化查找算法-convenient manner to achieve the goal of discovering, is the optimization of high-speed search algorithm
运用非递归方式设计折半查找法的程序
- 五子棋源程序法的程序-renju source Act procedures
折半查找-c++
- 折半查找算法,实现对于一组数据的查找操作,利用折半查找法进行查找-binary search algorithm, to achieve a set of data for the search operation, the use of binary search method you
二分法
- 一个二分法查找的图形演示程序- A dichotomy search graph demonstration program
电话本管理系统
- 该系统是本人课程设计作业,因为时间关系,只用了两天多的时间编成。所以有很多地方没有得到增强。版本为1.0。现作以下升级。 增加NEW,OPEN版本。 提高输入容错。判断输入的对错。 时间关系,搜索功能为线性搜索,现增强如下:f_search:费氏查找法;btree:二叉树查找法;l_search:线性查找法; r_search:递归折半查找法;zcsear:杂凑碰撞查找法;o_sear:插补查找加强法; 排序是冒泡法,现增强为:heap
运用非递归方式设计折半查找法的程序
- 五子棋源程序法的程序-renju source Act procedures
折半查找-c++
- 折半查找算法,实现对于一组数据的查找操作,利用折半查找法进行查找-binary search algorithm, to achieve a set of data for the search operation, the use of binary search method you
二分搜索法
- 要求随机关生一个序列,任意查找其中一个元素时,采用二分搜索法实现,并且还能显示查找次数。使用二分法首先要使序列列按从小到大排序,因此程序中还要有排序功能。- there is a random series ,when looking for any an element in this series,we can achieve this by the method of bisectional searching,also the
二分法的C实现
- 二分法的C实现,可以直接用于查找,有详细的例子-dichotomy C realized, can be directly used to locate a detailed example
二分查找法
- 汇编语言上机第三题:二分查找法,算法是等同于C语言数据结构中的算法.-assembly language on the plane Q3 : two searching method, the algorithm is equivalent to the C language data structure of the algorithm.
KMP查找法
- 方便快捷地实现目标的查找,是高速度的优化查找算法-convenient manner to achieve the goal of discovering, is the optimization of high-speed search algorithm
图形方式的二分查找程序
- 在TC 中用图形方式演二分法查找程序,可以作为学生的教学用。很形象啊-TC used in the graphic speech dichotomy tracing procedure can be used as a teaching students. Ah very image
shunxuchazhao
- 顺序查找法 关于数据结构的基本查找算法实现-law on the order of search data structure of the basic search algorithm
erfenchazhao
- 二分查找法的windows环境下用c++编程出来 绝对是初学者的福音-Binary search method used under the windows environment c++ Programming is definitely out of the Gospel for beginners
binarysearch
- 问题的提出:编写程序对数据序列采用二分查找法和顺序查找法查找元素的下标,要求使用类模板实现(其中二分法查找算法要求用递归实现,给定数据序列有序)。-Of the problem: the preparation of procedures for the data sequence using binary search method and the order of search law search element subscr i
BinarySearch
- 基于Java的二分查找法,是数值计算方法实验用的代码。-Java-based binary search method, numerical method is experimental code.
haxibiao
- 附有实验报告。。1、查找的基本概念和查找的几种方法以及求查找的平均查找长度。 2、静态查找表(基于线性表的查找法)。顺序查找、二分查找和分块查找。 3、动态查找表(基于树的查找法)。二叉排序树、二叉平衡树、 B_ 树和B+ 树。 -1, find the basic concepts and find several methods, as well as seeking to find the average search
折半查找法
- 折半查找法是效率较高的一种查找方法。假设有已经按照从小到大的顺序排列好的五个整数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,说明没有此数,打
查找算法
- 分析对比顺序查找和折半查找法的特点,并分析算法时间复杂度;以及哈希表的构造与查找,利用开放 地址法函数处理机制;(Two point lookup method and hash function processing mechanism)