搜索资源列表
vc_Algorithm
- VC++数据结构与算法经典的上百种源码包,绝对对C++编程有帮助,涉及数学、底层编程、校验算法、问题算法、文件算法、大小写转换、进制转换、字符转换、数组、单链表、二分查找、汉诺塔算法以及其它一些常用算法,有的含有示例,C++编程不可多得的编程资料-VC++ data structures and algorithms on hundreds of classic source package, absolutely on the C++ programming help, involving m
BinarySearch
- 利用二分搜索技术实现数组元素的查找,实现了算法设计中的分治策略-Use binary search technique to find the array element, the realization of the algorithm design of sub-rule strategy
C
- 二分查找又称折半查找,它是一种效率较高的查找方法。 【二分查找要求】:1.必须采用顺序存储结构 2.必须按关键字大小有序排列。 【优缺点】折半查找法的优点是比较次数少,查找速度快,平均性能好 其缺点是要求待查表为有序表,且插入删除困难。因此,折半查找方法适用于不经常变动而查找频繁的有序列表。 【算法思想】首先,将表中间位置记录的关键字与查找关键字比较,如果两者相等,则查找成功;否则利用中间位置记录将表分成前、后两个子表,如果中间位置记录的关键字大于查找关键字,则进一步查
erfenfachazhao
- 本程序的主要功能就是:二分法查找的算法实现,
BinarySearch
- 简单的二分查找算法,用java语言实现,-A simple binary search algorithm
2.3-7
- 算法上机2.3.7归并,用二分查找.调用归并算法排序 ,移出数组最后一个元素对剩下元素进行二分查找 -merge and binery search
sort_search
- 二分查找算法、鸡尾酒算法、快速排序算法、插入排序和选择排序。-Binary search algorithm, cocktails algorithm Quicksort algorithm, insertion sort and selection sort.
C
- C经典数据结构算法,含汉诺塔、逆阵、求进制、二分查找等大量经典算法,新手必备。-C classic data structures and algorithms, containing HANOR, Inverses, octal, and binary search a large number of classic algorithms novice.
erfenchazhao
- 二分查找程序 vc环境下运行 算法程序 欢迎大家下载-Binary search program the vc environment running algorithm welcome to download
binary-search
- 严蔚敏《数据结构》中有序顺序表的二分查找算法实现-Yan Wei-min data structure in the ordered sequence table binary search algorithm
javaalgorithm
- Java常用排序算法&程序员必须掌握的8大排序算法+二分法查找-Java algorithm, sort algorithm
15-algorithm
- c语言实现常用算法函数,可直接调用,包括快排,二分查找-c implement some useful algorithm functions
erfenchazhao
- c语言二分查找算法示例程序,c语言基础-c language binary search algorithm sample program, c language foundation
Normal-Algorithm
- 在本文章里面,有各种举出算法的C语言实现 1、大数阶乘 2、大数乘法 3、任意进制转换 4、最大公约数 5、最小公倍数 6、快速傅里叶变换 7,字符串的替换,查找,截取 8、叉乘法求多边形的面积 9、快速,希尔,选择等各种排序 10、二叉树,链表,链栈 11、二分查找 12、求解线性方程组,也叫中国余数定理 13、求点到直线距离 14、Prim算法求最小生成器 15、判断点与直线的关系,俩条直线的关系 16、求排列组合数,俩矢量角度
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