搜索资源列表

  1. 1

    0下载:
  2. 实验1 线性表(1) 输入若干正整数,建立一个顺序表,并在顺序表上实现如下操作:(1)在第3个元素位置插入666。(2)将第8个元素删除。(3)查找值为65的元素,若存在则输出,否则打印没有该元素。 实验2 线性表(2) 输入若干正整数,建立一个带头结点的单链表,并在单链表上实现如下操作:(1)在第3个元素位置插入666。(2)将第8个元素删除。(3)查找值为65的元素,若存在则输出,否则打印没有该元素。(4)查找第3
  3. 所属分类:Windows编程

    • 发布日期:2024-05-19
    • 文件大小:11264
    • 提供者:fff
  1. C

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

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:pxs
  1. CH18

    0下载:
  2. 17.3 磁盘随机文本文件的顺序查找qdsch.c 17.4 整型有序表的对分查找qibsh.c 17.5 实型有序表的对分查找qrbsh.c 17.6 字符串有序表的对分查找qhbsh.c 17.7 整型、实型及字符型关键字成员有序的结构体数组的对分查找qbkey.c 17.8 字符串关键字成员有序的结构体数组的对分查找qhkey.c 17.9 按关键字有序的磁盘随机文本文件的对分查找qdbsh.c-17.3
  3. 所属分类:Windows编程

    • 发布日期:2024-05-19
    • 文件大小:7168
    • 提供者:yangasdtat
  1. f31

    0下载:
  2. 蛇顺序表中的关键字是递增有序的,将监视哨设在高下标端,设计算法实现简单顺序查找-Snake order keyword in the table are incremental and orderly, and will monitor the post is located in Gao Xia S side, the design algorithm is simple in order to find
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:左左
  1. Cpp1

    0下载:
  2. 2 使用顺序查找方法,从查找表中查找姓名为赵阳和王夏的学生。如果查找成功,则显示该生的相关信息;如果查找不成功,则给出相应的提示信息。 3 使用直接插入排序方法,按姓名对学生信息进行排序。输出排序前和排序后的学生信息表,验证排序结果。 4 使用直接选择排序方法,对学生信息中的C成绩进行排序。输出排序前和排序后的学生信息表,验证排序结果。 -2 using the sequential search method, from
  3. 所属分类:教育/学校应用

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:金伟
  1. search_sort

    0下载:
  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 fo
  3. 所属分类:教育/学校应用

    • 发布日期:2024-05-19
    • 文件大小:7168
    • 提供者:fanfausun
  1. t1

    0下载:
  2. 顺序表实现员工信息的添加删除,用c语言实现。可以建立员工的信息,查找员工信息,添加信息或删除信息(包括工号,姓名,性别,职业)。-In order to add the table to achieve employee information removed, using c language. Can set up employee information, to find employee information, add inf
  3. 所属分类:书籍源码

    • 发布日期:2024-05-19
    • 文件大小:2048
    • 提供者:南风雅
  1. jiandanshunxuchazhao

    0下载:
  2. 简单顺序查找,输入一个指定长度的顺序表,再输入一个数据,判断数据是否在顺序表中,若在,输出所在位置下标,若不在,输出“Error!”-Simple sequential search, enter a specified length of the order form and then enter a data, in order to judge whether the data table, if the output locat
  3. 所属分类:C#编程

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:陈娜
  1. 1

    0下载:
  2. 顺序表基本功能的实现,实现插入、删除、修改、查找,并将结果在屏幕上输出适合初学者!-The realization of the basic functions of the order of the table to achieve insert, delete, modify, search, and the results on the screen output suitable for beginners!
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:890880
    • 提供者:张蓝天
  1. xu

    0下载:
  2. 掌握线性表的结构特点。 掌握线性表的基本操作:初始化,插入,删除,查找,判空,求线性表长度等运算在顺序存储结构和链式存储结构上的实现。 通过本章实验帮助学生加深对C语言的使用(特别是函数的参数调用、指针类型的应用)。-Grasp the characteristics of the linear structure of the table. Master the basic operation of the linear fo
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:王微
  1. NO1

    0下载:
  2. 对元素类型为整型的顺序存储的线性表进行插入、删除和查找操作。-Type of elements stored in order of integer linear table insert, delete and search operations.
  3. 所属分类:Windows编程

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:song
  1. linearStorage

    0下载:
  2. 实现线性表的顺序存储结构,可实现输入输出、查找、插入、删除元素等操作-The linear order of the table storage structure, can achieve input and output, find, insert, delete elements and other operations
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:10240
    • 提供者:林小悠
  1. yudaoq

    0下载:
  2. 查找、排序的应用实验1) 顺序查找; 2) 分别使用直接插入排序、冒泡排序、快速排序对原纪录序列进行排序,并显示排序结果; 3) 对上述纪录列表排好序,然后对其进行折半查找; 4) 利用原纪录序列建立一颗二叉排序树,并在其上实现特定关键字值结点的查找; 5) 按照“除留余数法”哈希构造函数和线性探测再散列的冲突处理方法创建表长为m=11的哈希表; 6) 实现5)创建哈希表上的查找。 -Find, Sequenci
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:3072
    • 提供者:张强
  1. xianxingbiaodecharuheshanchu

    0下载:
  2. 利用顺序表完成线性表信息的管理。要求首先建立并初始化线性表,并实现增加、删除、查找、修改和遍历表等功能。-To complete the order form using the linear form of information management. Requires first to create and initialize the linear form, and to achieve to add, delete, sea
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:小刀
  1. Lab5(1)

    0下载:
  2. 01.线性表的顺序存储及其运算02.线性表的链式存储及其运算03.栈的应用04.循环队列05.二叉树的顺序存储及其运算06.二叉树的链式存储及其运算(二叉排序树)07.顺序查找-01. Linear sequence of storage and computing table 02. Linear chain store and its operation table 03. Stack of applications 04. Cir
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:18482176
    • 提供者:Luo
  1. link

    0下载:
  2. 单链表是一种顺序存取的结构,为找第 i 个数据元素,必须先找到第 i-1 个数据元素。因此,查找第 i 个数据元素的基本操作为:移动指针,比较 j 和 i -Linked list structure is a sequential access for the data elements to find the first i must first find the first i-1 data elements. Therefore
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:4096
    • 提供者:zn
  1. linear-list

    0下载:
  2. 构造一个空的线性表从顺序表中才查找与给定的元素值相同的元素在表中的位置-Linear form constructed from an empty table in order to find only elements with the same value for a given element position in the table
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:小丫
  1. xianxingbiao

    0下载:
  2. 线性表的应用,包括顺序存储,链式存储,选择排序,循环链表,双链表,顺序查找等内容-Linear list of applications, including the order of store, chain store, selection sort, circular linked list, doubly linked lists, sequential search, etc.
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-19
    • 文件大小:6144
    • 提供者:董萍
  1. zheban

    0下载:
  2. 依次输入顺序表中的各个元素,然后进行关键字查找。如果存在则返回待查元素的位置,否则显示不存在。-Input sequence in turn each element in the table, and then keyword search. If there are elements of the location of unknown origin is returned, otherwise the show does not
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:lianyu
  1. shunxuchazhao

    0下载:
  2. 依次输入顺序表中的各个元素,然后进行关键字查找。如果存在则返回待查元素的位置,否则显示不存在。-Input sequence in turn each element in the table, and then keyword search. If there are elements of the location of unknown origin is returned, otherwise the show does not
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:lianyu
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 »

源码中国 www.ymcn.org