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

搜索资源列表

  1. C

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

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

    0下载:
  2. 1.利用实验建立一个有序表,采用折半查找实现某一已知的关键字的查找。 2.随机产生一组关键字,利用二叉排序树的插入算法建立二叉排序树,然后删除某一指定关键字元素。 3.已知散列函数H(key)=key p(p为自定义的常数),冲突处理方法分别为线性探测法、外拉链法实现 散列表的建立。 -find
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:3378
    • 提供者:李惠
  1. 4

    0下载:
  2. 将折半查找算法写成完整的程序 并上机通过
  3. 所属分类:CSharp

    • 发布日期:2017-04-15
    • 文件大小:5717
    • 提供者:小七
  1. zhebanchazhao

    0下载:
  2. 折半查找在C++6.0编译下通过 大家可以看看仅供参考-Binary search in C++6.0 compiler you can look through for reference only
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:528
    • 提供者:zhangfei
  1. main

    0下载:
  2. Descr iption: 对整型有序关键码序列进行折半查找,待排序序列以数组存储。如果找到待查记录,返回找到的位置下标,并删除该关键码记录;如果没找到待查记录,返回0,并将待查记录插入到适当位置,即该查找属于动态查找。输出查找过程中每一轮的low,mid,high 值,以及与给定值相比较的关键码值,并输出最后找到的位置,及变化后的数组。 注意:该数组为整型,数组中关键码存储位置为r[1]~r[n],r[0]留作它用,且关键码个数大于4. Input Format: 第一行输入数
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:4901
    • 提供者:kernel
  1. Binarysearchalgorithm

    0下载:
  2. 折半查找数据算法的实现 win32平台上实现-Binary search algorithm to achieve the realization of win32 platform
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:32907
    • 提供者:wang
  1. zheban

    0下载:
  2. 折半查找 VC 的折半查找代码是也~~ 请多多包含-zhe ban cha zhao de dai ma
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:1980
    • 提供者:lijiacheng
  1. SEARCH

    0下载:
  2. 输入一组整形数据,再输入一个需要查找的数据,实现折半查找和顺序查找2种查找方法-Enter a group of orthopedic data, and then enter a need to find the data to achieve binary search and sequential search methods to find two kinds of
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:589
    • 提供者:龙天
  1. half

    0下载:
  2. 折半查找的算法思想是将数列按有序化(递增或递减)排列,查找过程中采用跳跃式方式查找,即先以有序数列的中点位置为比较对象,如果要找的元素值小于该中点元素,则将待查序列缩小为左半部分,否则为右半部分。通过一次比较,将查找区间缩小一半。 折半查找是一种高效的查找方法。它可以明显减少比较次数,提高查找效率。但是,折半查找的先决条件是查找表中的数据元素必须有序-Binary search algorithm idea is to sequence by ordering (ascending or des
  3. 所属分类:CSharp

    • 发布日期:2017-03-28
    • 文件大小:672
    • 提供者:吕济根
  1. 9

    0下载:
  2. 折半查找,折半查找
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-11
    • 文件大小:518
    • 提供者:刘子淳
  1. 070810217

    0下载:
  2. 关于C语言的课程设计,用折半查找的算法查找-On the C language, curriculum design, with a binary search algorithms to find
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-25
    • 文件大小:51783
    • 提供者:米雅
  1. DEV_SOFTWARE

    0下载:
  2. 这是一个软件实验课的小程序包,内含词法扫描器,冒泡排序,学籍管理系统,折半查找,合并排序-This is a software Lab package, containing the lexical scanner, bubble sort, school management system, binary search, merge sort
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:371408
    • 提供者:lily
  1. c-language-programming

    0下载:
  2. c语言编程实例,处理简单的数据文件 判别2个文本文件的内容是否雷同 同学录信息管理系统 文字查找 学生成绩分布统计 用折半查找法猜篮球的价格-c language programming examples deal with simple data file to distinguish the price of two text contents of the file whether similar Classmates information management sy
  3. 所属分类:CSharp

    • 发布日期:2017-03-31
    • 文件大小:133423
    • 提供者:王泽
  1. FIND

    0下载:
  2. 数据结构:查找表的逻辑结构和存储结构。实现折半查找算法:建立一棵二叉排序树,输入给定值,在该二叉排序树查找,如不存在该值,则在二叉排序树中插入;如存在该值,则返回节点;实现删除找到节点的算法。-Data structures: a lookup table of the logical structure and storage structure. Binary search algorithm: the establishment of a binary sort tree, enter t
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:1973
    • 提供者:陈小默
  1. Binary

    0下载:
  2. 折半查找法,15个数的任意输入,排序后查找出要的数!-Binary search method, 15 the number of arbitrary input and want to find out the number of the sort!
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-15
    • 文件大小:7197
    • 提供者:linlin
  1. search

    0下载:
  2. 数据结构的算法集合,包含哈希表查找法与折半查找法-The collection of data structure of the algorithm contains a hash table lookup method and binary search method
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-04
    • 文件大小:248507
    • 提供者:董云才
  1. search

    0下载:
  2. 给定一组乱序数,再输入一个数,对这组数进行折半查找,确定目标数是否在这组数内。-Given a set number of out-of-order, and then enter a number, the number of this group of binary search to determine whether the number of targets in a number of groups.
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-03
    • 文件大小:1277
    • 提供者:李丁
  1. dg

    0下载:
  2. 递归实现折半查找,用c语言实现,有一组数组,在数组中找出这个数-Recursive implementation of binary search, using the C language, a set of array to find out the number of array
  3. 所属分类:Other systems

    • 发布日期:2017-11-12
    • 文件大小:734
    • 提供者:杨宇
  1. check

    0下载:
  2. 1.利用实验一建立的有序表,采用折半查找实现对某一已知的关键字的查找。 2.随机产生一组关键字,利用二叉排序树的插入算法建立二叉排序树,然后删除某一指定关键字元素。 3.已知散列函数为H(key)=key p(p为自定义的常数),冲突处理方法分别为线性探测法和外拉链法,建立散列表并实现查找某一指定关键字元素。-1. Experiment established orderly table, using a binary search to achieve a known keyword
  3. 所属分类:Other systems

    • 发布日期:2017-12-01
    • 文件大小:11959
    • 提供者:BidyBai
  1. chazhao

    0下载:
  2. 1.基本训练 (1)先建立有序表,采用折半查找实现对某一已知的关键字的查找。 (2)输入一组关键字,利用二叉排序树的插入算法建立二叉排序树,然后删除某一指定关键字元素。 2.综合训练 哈希表设计: 【问题描述】 针对某个集体(比如你所在的班级)中的“人名”设计一个哈希表,使得平均查找长度不超过R,完成相应的建表和查表程序。 【基本要求】 假设人名为中国人姓名的汉语拼音形式。待填入哈希表的人名共有30个,取平均查找长度的上限为2。哈希函数用除留余数法(H
  3. 所属分类:Other systems

    • 发布日期:2017-11-24
    • 文件大小:8044
    • 提供者:肖芬
« 1 23 4 »
搜珍网 www.dssz.com