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

搜索资源列表

  1. 二分查找

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

  1. 二分法查找元素

    0下载:
  2. 二分法查找元素
  3. 所属分类:数据结构常用算法

  1. caishuzi

    0下载:
  2. 一个猜数字的小游戏,很有意思的,里面涉及到了一个二分查找的思想,这样就可以用最小的次数查找到值。-a method of 2 divide looking for
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-31
    • 文件大小:1499
    • 提供者:张晶
  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. cifafenxi

    0下载:
  2. 简单c语言词法分析程序,实现了关键字识别功能,二分查找功能-Simple lexical analysis program c language to realize the keyword recognition, binary search function
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:7467
    • 提供者:屈小勇
  1. CircleArrayBinarySearch

    0下载:
  2. 在一个环状的有序数组(即把数组看做首位相连,数组最小值和最大值在数组中某个位置相邻)中,使用二分查找寻找一个数是否在数组中,返回其下标。vc 2005环境-In an orderly array of ring (that is, as the first connected to the array, an array of minimum and maximum in the array adjacent to a location), the use of binary search to
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:4042
    • 提供者:inspire
  1. arithmetic

    4下载:
  2. 常用算法:链表的操作、队列的应用、堆栈的应用、串的应用、树的基本操作、冒泡排序、堆排序、归并排序、磁盘文件排序、顺序查找、二分查找、树的动态查找、二分法求解方程、牛顿迭代求解方程、弦截法求解方程、拉格朗日插值、最小二乘法拟合、辛普生数值积分、改进欧拉法、龙格-库塔算法、高斯消去法、正定矩阵求逆算法-Commonly used algorithms: List of operation, the queue of applications, the stack of applications, t
  3. 所属分类:Algorithm

    • 发布日期:2016-08-26
    • 文件大小:21928
    • 提供者:
  1. erfenchazhao

    0下载:
  2. 二分查找程序,运用数组结构体和链表实现查找功能-Binary search procedures, the use of the array structure and list search functions to achieve
  3. 所属分类:Other Games

    • 发布日期:2017-04-13
    • 文件大小:1951
    • 提供者:kk
  1. main

    0下载:
  2. 为宿舍管理人员编写一个宿舍管理查询软件。基本要求:1.采用交互工作方式2.建立数据文件 ,数据文件按关键字(姓名、学号、房号)进行排序(冒泡、选择、插入排序等任选一种)3.查询菜单: (用二分查找实现以下操作)A. 按姓名查询B. 按学号查询C. 按房号查询4.打印任一查询结果(可以连续操作) -For managers in the preparation of a hostel dormitory management software inquiries. The basic requ
  3. 所属分类:Other systems

    • 发布日期:2017-04-04
    • 文件大小:1693
    • 提供者:zhanglong
  1. sortable

    0下载:
  2. 这是数据结构初学者的极佳参考资料,里面包含有查找和排序的相关方法,如二分查找和快速排序等.-This is the data structure of an excellent reference for beginners, which contains search and sort the relevant methods, such as binary search and rapid ranking.
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:12854
    • 提供者:smith
  1. erfenchzhao

    0下载:
  2. 数据结构二分查找。。。。。。原代码数据结构课程-Binary search data structure. . . . . . The original source data structure course
  3. 所属分类:source in ebook

    • 发布日期:2017-04-11
    • 文件大小:1749
    • 提供者:杨国庆
  1. inheritance

    0下载:
  2. 设计一个抽象类Shape,包括2个抽象方法,分别是计算形状的周长和面积。设计具体类Rectangle和Circle,分别表示矩形和圆,它们都是Shapes的子类。使Rectangle和 Circle都实现Comparable接口。编写一个通用的排序程序和一个通用的二分查找程序(自己写代码实现),能对这二种类型的数组进行排序并查找指定的对象。-Design an abstract class Shape, including the two abstract methods, namely, ca
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-01
    • 文件大小:48227
    • 提供者:陈思
  1. gongzi

    0下载:
  2. 本程序要求有:输入记录保存到文件中;从文件中凋如入资料,显示记录内容;查询教工信息(用二分查找);删除教工记录;追加教工记录;统计教工信息;对教工工资进行排序-This procedure requires: Enter the record-keeping to document withered from the document, such as income data, showing record content inquiries teachers information (us
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2799
    • 提供者:孟健
  1. 1

    0下载:
  2. 宿舍管理查询系统 【问题描述】为宿舍管理人员编写一个宿舍管理查询系统。 【基本要求】 (1)采用交互工作方式 (2)建立数据文件,数据文件按关键字(姓名、学号、房号)进行排序(冒泡、选择、插入排序等任选一种) (3)查询菜单: (用二分查找实现以下操作) A. 按姓名查询 B. 按学号查询 C. 按房号查询 (4)保存任一查询结果到文件中 -Dormitory Management Inquiry System] [Descr iption of t
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2059
    • 提供者:weiwei
  1. erfen

    0下载:
  2. 二分查找, 是找工作笔试中几乎都会考的题目,需要好好理解-Two sub-search, looking for work are almost always written in the subject of examination, required a good understanding of
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:80342
    • 提供者:闫仕涛
  1. er

    0下载:
  2. 1. 二分查找 在对线性表的操作中,经常需要查找某一个元素在线性表中的位置。此问题的输入是待查元素x和线性表L,输出为x在L中的位置或者x不在L中的信息。 -1. Two sub-linear search in the form of operation, usually a required element of online search of the table position. This problem are a complete set of input elements
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-04-17
    • 文件大小:143541
    • 提供者:松柏长青
  1. yanshi

    0下载:
  2. 数据结构基本操作 冒泡排序、堆排序、归并排序、快速排序、分块查找、二分查找演示-Basic operation data structure bubble sort, heap sort, merge sort, quick sort, sub-block search, binary search demo
  3. 所属分类:File Operate

    • 发布日期:2017-04-06
    • 文件大小:768555
    • 提供者:李明
  1. 2find

    0下载:
  2. 又一个C的二分查找演示程序,让你对查找的概念更加清晰,更加容易掌握-C and a demonstration of the two sub-search process, to get you on the concept of search clearer, more easy to grasp
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:24458
    • 提供者:熊洋
  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 m
  3. 所属分类:Other systems

    • 发布日期:2017-04-28
    • 文件大小:319734
    • 提供者:林玲
  1. datastruct

    0下载:
  2. 有序表上二分查找,数据结构中的一种,C语言实现,学生专用-Ordered binary search form, a data structure, C language, for students
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:903
    • 提供者:周思君
« 1 2 3 45 6 7 8 9 10 ... 16 »
搜珍网 www.dssz.com