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

搜索资源列表

  1. 语言折半查找

    0下载:
  2. 所属分类:Windows编程

    • 发布日期:2008-05-22
    • 文件大小:756
    • 提供者:superx
  1. 折半查找

    0下载:
  2. 数据结构二分查找,演示了使用递归函数或者循环语句实现的二分查找算法,两种方法都使用了称为二分搜索的算法-data structure search for two hours to demonstrate the use of recursive function or loop is the realization of two searching algorithm, both methods are used as a two-Search Algorithm
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:263052
    • 提供者:李顺
  1. 排序和查找

    0下载:
  2. 常用的数据结构排序和查找算法:简单选择排序,冒泡排序,折半插入排序,快速排序,堆排序 顺序查找,折半查找.-commonly used data structures sorting and searching algorithms : simple choice, in order of Bubble Sort, half insertion sort, rapid sequencing, Heap Sort sequence search, binary search.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2577
    • 提供者:张杰
  1. 折半查找和插值查找

    0下载:
  2. 折半查找和插值查找-binary search and interpolation search
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:878
    • 提供者:徐宾
  1. 折半插入排序

    0下载:
  2. 此算法为从c语言折半查找-this algorithm from C language binary search
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:48640
    • 提供者:邹杰
  1. 顺序查找

    0下载:
  2. 本程序用于数据的折半查找,是折半查找的基本算法-the procedures for the binary search data is the basic binary search algorithm
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:13373
    • 提供者:我心飞扬
  1. 折半查找-c++

    0下载:
  2. 折半查找算法,实现对于一组数据的查找操作,利用折半查找法进行查找-binary search algorithm, to achieve a set of data for the search operation, the use of binary search method you
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:9767
    • 提供者:陈钊
  1. 二分法查找

    0下载:
  2. 二分法查找 二分法查找其实就是折半查找,一种效率较高的查找方法。针对有需数组来查找的。 主要思想是:(设查找的数组期间为array[low, high])
  3. 所属分类:技术管理

  1. 用折半查找法找出该职工的姓名

    0下载:
  2. 用折半查找法找出该职工的姓名.txt 这个问题并不是C语言,是数据结构方面的问题 首先,你要查找的表是有规定的有序表 表中数据元素按关键码升序或降序排列的表称为有序表。 折半查找的思路是,在有序表中取中间元素作为比较对象,若给定值与中间元素的关键码相等,则查找成功;若给定值小于中间元素的关键码,则在中间元素的左半区继续查找;同理,如果找不到在右半部查找。不断重复上述的查找过程,直到查找成功,或所查找的区域无数据元素,查找失败。 如果还是不懂的话,可以查找一下有关数据结构方面的书,会更加
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-09-17
    • 文件大小:4821
    • 提供者:3345143
  1. 20051018094019

    0下载:
  2. 二分法的c实现,折半查找递归函数,如果查找成功,函数返回关键字所在位置,否则返回-1-dichotomy c realized, binary search recursive function, if you succeed, the function returns keyword location, or else return-1
  3. 所属分类:Other systems

    • 发布日期:2017-12-01
    • 文件大小:959
    • 提供者:h
  1. search

    0下载:
  2. 使用c++实现顺序表的二分查找(具体使用折半查找)。-The use of c++ Realization of the order of the binary search table (specifically the use of half to find).
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:22213
    • 提供者:小宋
  1. erfenfadigui

    0下载:
  2. 用递归实现的二分法,数据结构的典型问题,二分查找也称折半查找,它要求待查找的数据元素必须是按关键字大小有序排列的顺序表。-Realize the dichotomy with recursive data structure of a typical problem, binary search, also known as split-half search, which requires the data elements to be search by keyword must be or
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1161
    • 提供者:Anni
  1. 111

    0下载:
  2. 实现折半查找算法,实现直接插入排序、希尔排序(选做)、起泡排序、快速排序、简单选择排序和堆排序(选做)等算法
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:2936
    • 提供者:
  1. Student

    0下载:
  2. 学生管理系统 根据指定学生个数,逐个输入学生信息; (2) 逐个显示学生表中所有学生的相关信息; (3) 给定一个学生信息,插入到表中指定的位置; (4) 删除指定位置的学生记录; (5) 统计表中学生个数; (6) 利用直接插入排序或者折半插入排序按照姓名进行排序; (7) 利用快速排序按照学号进行排序; (8) 根据姓名进行折半查找,要求使用递归算法实现,成功返回此学生的学号和成绩; (9) 根据学号进行折半查找,要求使用非递归算法实现,成功返回此学生的姓
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-25
    • 文件大小:2282
    • 提供者:mianhuatang
  1. zheban_finding

    0下载:
  2. 数据结构中的折半查找源程序,适合学习数绝结构的人学习使用-Data structure in the binary search source code, suitable for studying the structure of the number of people must learn to use
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:690
    • 提供者:
  1. SearchPosition

    0下载:
  2. 折半查找算法的实现,使用VC实现,希望对大家有用-Implementation of binary search algorithm, using VC realize the hope for all of us
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:231537
    • 提供者:fcwindpasss
  1. 顺序查找和折半查找

    0下载:
  2. 建立一个整数数据文件datafile 从文件中读取数据构成查找表 顺序查找 冒泡排序 递归及非递归折半查找方法(1, a plastic data file datafile is set up. 2, reading the data from datafile to form a lookup table 3, sequence lookup 4, bubble sort 5, recursive and non recursive binary search
  3. 所属分类:其他

  1. 折半查找法

    0下载:
  2. 折半查找法是效率较高的一种查找方法。假设有已经按照从小到大的顺序排列好的五个整数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,说明没有此数,打印找不到信息,程序结束。(The method of bin
  3. 所属分类:并行计算

    • 发布日期:2018-01-10
    • 文件大小:36864
    • 提供者:JinPatrick
  1. 查找算法

    0下载:
  2. 分析对比顺序查找和折半查找法的特点,并分析算法时间复杂度;以及哈希表的构造与查找,利用开放 地址法函数处理机制;(Two point lookup method and hash function processing mechanism)
  3. 所属分类:其他

    • 发布日期:2018-04-21
    • 文件大小:126976
    • 提供者:SUSHAN666
  1. some sort and selection algorithms

    0下载:
  2. 三种排序算法和两种查找算法,可直接打开,编译运行。没有错误(some sort and selection algorithms)
  3. 所属分类:其他

    • 发布日期:2018-05-02
    • 文件大小:2048
    • 提供者:射鲸少年
« 12 3 4 5 6 7 8 9 10 ... 13 »
搜珍网 www.dssz.com