搜索资源列表
BISEARCH
- 二分查找算法的源代码,可以在BC、TC、VC++上运行
erfenchazhaosuanfa
- 二分查找算法,觉得非常有意义,不是每个人都需要,但需要时很急人-two hours to search algorithm, very meaningful, not everyone needs, but people need urgent
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 ipt, require the use of class t
vc_Algorithm
- VC++数据结构与算法经典的上百种源码包,绝对对C++编程有帮助,涉及数学、底层编程、校验算法、问题算法、文件算法、大小写转换、进制转换、字符转换、数组、单链表、二分查找、汉诺塔算法以及其它一些常用算法,有的含有示例,C++编程不可多得的编程资料-VC++ data structures and algorithms on hundreds of classic source package, absolutely on the C++ programming help, involving m
C
- 二分查找又称折半查找,它是一种效率较高的查找方法。 【二分查找要求】:1.必须采用顺序存储结构 2.必须按关键字大小有序排列。 【优缺点】折半查找法的优点是比较次数少,查找速度快,平均性能好 其缺点是要求待查表为有序表,且插入删除困难。因此,折半查找方法适用于不经常变动而查找频繁的有序列表。 【算法思想】首先,将表中间位置记录的关键字与查找关键字比较,如果两者相等,则查找成功;否则利用中间位置记录将表分成前、后两个子表,如果中间位置记录的关键字大于查找关键字,则进一步查
BinarySearch
- 简单的二分查找算法,用java语言实现,-A simple binary search algorithm
FIND
- VC++二分查找法代码,实现二分查找排序算法-VC++ SOURCE CODE
Binary-search-algorithm
- 二分查找算法,vc6.0编写,控制台程序-Binary search algorithm, vc6.0 writing, the console program
erfenfa
- 排序算法之二分法查找算法,注意和其他算法的区别及其独特之处-The dichotomy of the sorting algorithm to find the algorithm, attention and other algorithms, the difference between its unique
2.3-7
- 算法上机2.3.7归并,用二分查找.调用归并算法排序 ,移出数组最后一个元素对剩下元素进行二分查找 -merge and binery search
vb-changyongsuanfa
- 自编的VB中的常用算法源码,如排序,二分查找,顺序查找,加密解密,进制转换等,可作为VB初学者研究学习之用。-Commonly used algorithm source code in VB self, such as sorting, binary search, sequential search, encryption and decryption, the hex conversion, can be used as a beginner VB learning.
Binary
- 二分查找算法可以实现查找已经排好序的数组中查找某个特定值的快速查找算法-The binary search algorithm
sort_search
- 二分查找算法、鸡尾酒算法、快速排序算法、插入排序和选择排序。-Binary search algorithm, cocktails algorithm Quicksort algorithm, insertion sort and selection sort.
binary-search
- 严蔚敏《数据结构》中有序顺序表的二分查找算法实现-Yan Wei-min data structure in the ordered sequence table binary search algorithm
erfenchazhao
- c语言二分查找算法示例程序,c语言基础-c language binary search algorithm sample program, c language foundation
二分法查找算法C源码
- 此程序可实现二分查找算法,采用的是C编程。(This procedure can achieve two points search algorithm, using C programming.)
xiti
- 简单的实现算法的最长公共子序列,n皇后,最长递增子序列,最短路径,二分查找等(The longest common subsequence of the simple implementation algorithm, the n queen, the longest incrementing subsequence, the shortest path, the two point lookup, etc.)
快排_二分查找
- 快排 简单的快速排序算法 附加二分查找内容(QUICK SORT Fast row simple fast sorting algorithm add two point search content)
基于二分查找的有序符号表
- 基于平行数组与二分查找的有序符号表是《算法》中的经典查找算法,本程序使用 Python 语言,实现有序符号表。 ST.py 包含两个类,ST 和 OrderedST。 ST是无序的符号表,基于链表实现。按照顺序将键值对插入链表。 OrderedST 则是基于平行数组的有序符号表。在进行查找的时候,使用 二分查找 算法。(The ordered symbol table based on parallel array and two point lookup is the classic
二分查找与分制算法
- 二分查找与分制算法题解常见题型解决方案2018_3_18(Binary search and division algorithm)