CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 二分查找

搜索资源列表

  1. zhebanchazhaofa

    0下载:
  2. 这般查找法又称二分查找法,这种方法对待查找的列表有两个要求:(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
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:924
    • 提供者:tmac
  1. NumericalAnalysis

    0下载:
  2. 数值分析中常用算法的C++语言实现。 其中包括: 变步长梯形积分公式 二分查找 拉格郎日差值公式 牛顿迭代公式 牛顿前插公式 -Algorithm commonly used in numerical analysis of the C++ language. These include: Variable Step-trapezoidal integral formula of binary search difference Lagrangian formula
  3. 所属分类:Algorithm

    • 发布日期:2017-04-02
    • 文件大小:224824
    • 提供者:xichen
  1. search

    0下载:
  2. 各种查找算法,如顺序查找、折半查找、二分查找等,应有尽有-a series of ideas for searching
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-04
    • 文件大小:1096
    • 提供者:柳彬彬
  1. BinarySearch

    0下载:
  2. 数据结构与程序设计经典算法的算法分析源代码之:二分查找-Design of data structures and procedures of the classical algorithm: binary search
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:48766
    • 提供者:张祖琼
  1. binaryreserch

    0下载:
  2. 利用c++实现的二分查找算法,实现相关工能-Using c++ to achieve the binary search algorithm, the realization of the relevant work can
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:576813
    • 提供者:迪迪派
  1. C

    0下载:
  2.  二分查找又称折半查找,它是一种效率较高的查找方法。   【二分查找要求】:1.必须采用顺序存储结构 2.必须按关键字大小有序排列。   【优缺点】折半查找法的优点是比较次数少,查找速度快,平均性能好 其缺点是要求待查表为有序表,且插入删除困难。因此,折半查找方法适用于不经常变动而查找频繁的有序列表。   【算法思想】首先,将表中间位置记录的关键字与查找关键字比较,如果两者相等,则查找成功;否则利用中间位置记录将表分成前、后两个子表,如果中间位置记录的关键字大于查找关键字,则进一步查
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:515
    • 提供者:pxs
  1. data_struct

    0下载:
  2. 数据结构常用算法的程序实现,采用C语言,之--二分查找※※快速排序--篇。-Commonly used data structure of the program algorithm using C language, the- binary search ※ ※ Quick Sort- Part.
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:991
    • 提供者:ssl
  1. vc_Algorithm

    0下载:
  2. VC++数据结构与算法经典的上百种源码包,绝对对C++编程有帮助,涉及数学、底层编程、校验算法、问题算法、文件算法、大小写转换、进制转换、字符转换、数组、单链表、二分查找、汉诺塔算法以及其它一些常用算法,有的含有示例,C++编程不可多得的编程资料。-VC++ data structures and algorithms on hundreds of classic source package, absolutely on the C++ programming help, involving
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-04
    • 文件大小:316702
    • 提供者:126
  1. binary_hash

    0下载:
  2. 查找表源码,其中包含两个独立的程序: (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
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:3666
    • 提供者:code998
  1. BinarySearch

    0下载:
  2. 简单的二分查找算法,用java语言实现,-A simple binary search algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:4351
    • 提供者:zhengxuncan
  1. BinaryTree

    0下载:
  2. c++数据结构中的二分查找树,是比较基本的数据查找结构,查找效率比较高-c++ data structure in the binary search tree, is a more basic data to find the structure to find more efficient
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:416820
    • 提供者:王龙飞
  1. 5

    0下载:
  2. 数据结构中的,二分查找的问题的一个小程序。-The data structure, two sub-problems to find a small program.
  3. 所属分类:source in ebook

    • 发布日期:2017-04-04
    • 文件大小:762
    • 提供者:哈哈
  1. DataStructer_Program_C_Language

    0下载:
  2. 数据结构算法经典大全 包含了常见的数据结构的实现代码,如链表、图、栈、二分查找等-Data Structure Algorithm classic Daquan data structure contains the implementation of the common code, such as linked lists, graphs, stack, binary search, etc.
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:248139
    • 提供者:李杰
  1. Program

    0下载:
  2. 创建一个数组对其中数据进行操作,包括输出,顺序查找,二分查找,冒泡排序,插入排序。-Create an array of which the data operations, including output, sequential search, binary search, bubble sort, insertion sort.
  3. 所属分类:Other systems

    • 发布日期:2017-04-04
    • 文件大小:1814
    • 提供者:
  1. xiaochengxu

    0下载:
  2. 字符串转换成对应的数 二分查找 进制转换 排序 杨辉三角-Strings are converted to the corresponding number of Binary search binary conversion sort Yang Hui Triangle
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-27
    • 文件大小:2678
    • 提供者:赵爽
  1. erfenchazhao

    0下载:
  2. 数据结构相关知识写的,二分查找的相关代码-2 minutes to find the relevant code
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:13032
    • 提供者:王营
  1. aifenchazhao

    0下载:
  2. 利用分治法解决二分查找问题,这个程序可以输出结果。希望对大家有一定的帮助,谢谢了-The use of sub-rule method to deal with two minutes to find the problem, this program can output. We want to have some help, thank you
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-31
    • 文件大小:626
    • 提供者:胡吉旦
  1. BinarySearchTree

    0下载:
  2. 二分查找树。希望对刚开始学习数据结构的有帮助,-BinarySearchTree.rar
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:1558
    • 提供者:peace
  1. MergeSort

    0下载:
  2. 算法导论2.3-7的答案,用到了归并排序,二分查找等-Introduction to Algorithms 2.3-7 answer, use a merge sort, binary search, etc.
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:247184
    • 提供者:luwei
  1. OK2

    0下载:
  2. 一个实现冒泡排序,选择排序和插入排序的程序,还有二分查找和顺序查找-An implementation of bubble sort, selection sort and insertion sort program, as well as binary search and sequential search
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:893453
    • 提供者:gaoyi1620
« 1 2 3 4 56 7 8 9 10 ... 16 »
搜珍网 www.dssz.com