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

搜索资源列表

  1. search_sort

    1下载:
  2. 建立一存有若干学生信息(学号、姓名、一门课成绩)的顺序表;采用2种排序方法对学生表按学号(学号位关键字)排成升序;再给一个学号值以二分法查找该学生-There are a number of the establishment of a student information (Student ID, name, a class results) in the order form using two kinds of ways for students to sort the table b
  3. 所属分类:Education soft system

    • 发布日期:2017-03-29
    • 文件大小:7285
    • 提供者:fanfausun
  1. BinarySearch

    0下载:
  2. 二分法查找程序课程设计,只供大家参考,不要直接复制粘贴,还是以学习为主。-Binary search program curriculum design
  3. 所属分类:software engineering

    • 发布日期:2017-04-24
    • 文件大小:127165
    • 提供者:lyc
  1. shujujiegou_erfenfachazhaoshuju

    0下载:
  2. 《数据结构》课程中,利用二分法查找数据,压缩包里是源代码,在vc++6.0中可以直接调试-" Data Structure" Course, using binary search data, compression bag is the source code, in vc++6.0 can directly debug
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:1003
    • 提供者:叶杨
  1. ComputeCommandTime

    0下载:
  2. 用二分法和线性查找法对数组进行查找,并且算出时间。-With the dichotomy and the linear search method to find the array, and calculate the time.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-09
    • 文件大小:825
    • 提供者:ruirui
  1. c

    0下载:
  2. 二分法(折半)插入排序:在已排好序的序列中使用二分法查找插入位置,找到后移动其后记录插入新记录。-Dichotomy (binary) insertion sort:In the series have been sequenced use dichotomy search into position,after finding a new record record insertion by moving.
  3. 所属分类:File Formats

    • 发布日期:2017-04-07
    • 文件大小:562
    • 提供者:刘丹
  1. Search50

    0下载:
  2. 随机生成100个0到200的整数,用二分法查找50是第几个数,输出查找过程。-100 randomly generated integers from 0 to 200, with a binary search the number 50 is the first of several output lookup process.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-10
    • 文件大小:639
    • 提供者:hatec
  1. searchmethod

    0下载:
  2. 在数据结构中实现查找(顺序、二分法、二叉排序树、哈希)-n data structures, in order for (dichotomy, binary sort tree hash)
  3. 所属分类:software engineering

    • 发布日期:2017-04-17
    • 文件大小:478171
    • 提供者:曾经
  1. Binary_search

    0下载:
  2. 二分法搜索,调用函数bsearch查找数组里面指定的数 -Binary search
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-05
    • 文件大小:2600
    • 提供者:zm
  1. binary-search-data

    0下载:
  2. 二分法查找数据的程序。比较快速完整的查找数据的方法。-Procedure binary search data. Relatively rapid way to find data integrity
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:117803
    • 提供者:张锦锦
  1. Pinyin1

    0下载:
  2. 汉字转拼音,使用二分法查找,不考虑多音字问题-Chinese convert to Pinyin, use binary search, without regard to multi-tone word problem
  3. 所属分类:Java Develop

    • 发布日期:2017-04-14
    • 文件大小:3132
    • 提供者:ra21
  1. Joseph

    0下载:
  2. 该例程为针对Joseph查找问题的实现,原理是用数组构建查找表,采取二分的方法-failed to translate
  3. 所属分类:JavaScript

    • 发布日期:2017-04-13
    • 文件大小:2994
    • 提供者:sxf
  1. Keyword-frequency-statistics

    0下载:
  2. 针对程序中关键字出现频度,设计并实现了智能扫描源程序,利用Hash和二分两种查找方法进行搜索并统计关键字的出现频度,并对两种方法的查找的优缺点作了比较和归纳。-Keyword for the frequency of occurrence in the program design and implementation of intelligent scanning source code, the use of Hash and two are two ways to search and f
  3. 所属分类:Project Design

    • 发布日期:2017-04-10
    • 文件大小:1504986
    • 提供者:郭福明
  1. Binary-search-case

    0下载:
  2. 二分法查找,这是一种效率较高的查找方式,运行测试完全正确-Binary search, which is a more efficient search methods, run the test entirely correct
  3. 所属分类:Algorithm

    • 发布日期:2017-04-06
    • 文件大小:986
    • 提供者:江山
  1. bi-find

    0下载:
  2. 用c++写成的二分法查找程序,基本的,简单的-bi find
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:561
    • 提供者:sia
  1. xiaoxingyinghancidian

    0下载:
  2. 问题描述:设计一个英汉词典,支持Member的查找、插入、删除操作。 基本要求:实现字典的常用方法有:有序线性表(用二分检索实现)、AVL树(二叉搜索树)、Patricia Tree、散列表等,任选一种方法实现字典的操作,查找单词、插入单词(插入时,先查找,找不到插入,找到提示用户)、删除单词(删除时,先查找,找到删除,找不到提示用户)。字典是按字母顺序排列的,不能用顺序查找,插入或删除单词后,要保持字典的有序性。 测试数据:任一英文单词。 提高要求:选用两种以上的方法实现字典的操作
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:928
    • 提供者:姚伦帮
  1. rengelookup_list_4

    0下载:
  2. 本人学习C语言链表时的简单使用。实现二分法的查找功能。-I learn the C language linked list is simple to use,Dichotomy of the Find feature .
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:206810
    • 提供者:luminglong
  1. erfenfa

    0下载:
  2. 排序算法之二分法查找算法,注意和其他算法的区别及其独特之处-The dichotomy of the sorting algorithm to find the algorithm, attention and other algorithms, the difference between its unique
  3. 所属分类:CSharp

    • 发布日期:2017-04-06
    • 文件大小:574
    • 提供者:andy
  1. library-management

    0下载:
  2. a) 创建一个图书管理系统(包括每本书的编号、书名、作者、分类信息),程序采用交互式工作方式,流程如下: b) 书籍管理:完成增加新书籍和删除功能,并在完成操作之后按关键字(编号、书名、作者、种类)进行排序(插入、冒泡、快速、堆排序、归并排序等任选一种); c) 书籍查找:用二分法实现下述功能 ①按编号查找 ②按书名查找 ③按作者查找 ④按分类查找 -failed to translate
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1517
    • 提供者:许鑫鹏
  1. erfenfa

    0下载:
  2. 数值分析中 二分法查找带GUI图形界面的源码-Numerical analysis of binary searching with the source code of the GUI graphical interface
  3. 所属分类:Fractal program

    • 发布日期:2017-04-01
    • 文件大小:1760
    • 提供者:徐加文
  1. main

    0下载:
  2. 二分法查找的源码实现,供有需要者下载学习。-search by two division
  3. 所属分类:Algorithm

    • 发布日期:2017-04-02
    • 文件大小:611
    • 提供者:randolph
« 1 2 ... 12 13 14 15 16 1718 19 »
搜珍网 www.dssz.com