搜索资源列表
-
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下载:
折半查找算法,实现对于一组数据的查找操作,利用折半查找法进行查找-binary search algorithm, to achieve a set of data for the search operation, the use of binary search method you
-
-
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下载:
折半插入排序,在直接插入排序时,插入位置是通过折半查找法确定的。-Binary insertion sort, in the direct insertion sort, the insertion position is determined by binary search method.
-
-
0下载:
Binary search tree
- class template BST
- Some basic method: insert, delete
-
-
0下载:
附有实验报告。。1、查找的基本概念和查找的几种方法以及求查找的平均查找长度。
2、静态查找表(基于线性表的查找法)。顺序查找、二分查找和分块查找。
3、动态查找表(基于树的查找法)。二叉排序树、二叉平衡树、 B_ 树和B+ 树。
-1, find the basic concepts and find several methods, as well as seeking to find the average search length. 2, static lookup tabl
-
-
0下载:
AVL标准平衡二叉树的模板,运用三种顺序搜索方法构建-Standard AVL balanced binary tree template, constructed using three kinds of sequence search method
-
-
0下载:
编写程序对数据序列采用二分查找法和顺序查找法查找元素的下标,要求使用类模板实现(其中二分法查找算法要求用递归实现,给定数据序列有序)。-The data series used to program the binary search method and the sequential search method to find the next element standard, requires the use of class templates (which use a recursiv
-
-
0下载:
简单实现顺序表的查找方法,尤其是二分查找方法以及二叉排序树的建立及查找。
-Find a simple way to achieve order in the table, especially the binary search method and the binary sort tree establishment and Find.
-
-
0下载:
二分查找法,函数重载,矩阵,排序,顺序查找法-Binary search method, function overloading, matrix, sort, sequential search method
-
-
0下载:
实现以下功能:
1.输入10人的姓名职工号
2.按号从小到大排序。
3.输入一个号,用折半查找法查找并输出。-Achieve the following functions: 1 Enter the name of employee number 10 (2) according to numbers from small to large order. 3 Enter a number, with the binary search method to find and outpu
-
-
0下载:
折半查找法(在一个给定的数组中有没有给定的数)。-Binary search method (in a given array, there is no number given).
-
-
0下载:
有关二分查找的方法,能够取得很好的效果,希望对大家有所帮助。-The binary search method can achieve good results, we want to help.
-
-
0下载:
折半查找法,二叉树为基础,代码结构严谨精炼-Binary search method, binary tree as the foundation, the code structured refining
-
-
0下载:
对各种查找算法进行比较,有顺序查找法、折半法、分块法。-Comparison of various search algorithms, sequential search method, the binary method, sub-block method.
-
-
0下载:
二分查找是数据结构中的一种重要查找方法,它可以缩短查找时间-Binary search is the data structure is a kind of important search method, it can shorten find time
-
-
0下载:
binary search tree
definisi dan penjelasan binary search tr-binary search tree
definisi dan penjelasan binary search tree
-
-
0下载:
binaryNode 和 binarysearchtree 是实现了一个二叉树。arrayvector是自己实现的vector。binary search 是一个二元搜索方法。 single list是自己实现的一个单向链表。findthemajority是寻找数组中主元素的一个算法。list是用数组实现的一个链表。permute是一个实现全排列的算法。-binaryNode and binarysearchtree is the realization of a binary tree. ar
-
-
0下载:
本工程包含了C语言中常用的查找方法——折半查找法,该方法简单使用,是写C程序中常用的模块。-The project includes the C language commonly used search method- binary search method, which is simple to use, is to write a C program commonly used modules.
-
-
0下载:
二分查找又称折半查找,优点是比较次数少,查找速度快,平均性能好,占用系统内存较少;其缺点是要求待查表为有序表,且插入删除困难。因此,折半查找方法适用于不经常变动而查找频繁的有序列表。首先,假设表中元素是按升序排列,将表中间位置记录的关键字与查找关键字比较,如果两者相等,则查找成功;否则利用中间位置记录将表分成前、后两个子表,如果中间位置记录的关键字大于查找关键字,则进一步查找前一子表,否则进一步查找后一子表。重复以上过程,直到找到满足条件的记录,使查找成功,或直到子表不存在为止,此时查找不成功。
-