CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - 键盘

搜索资源列表

  1. 4

    0下载:
  2. (1) 通过键盘输入某位学生的学生证信息。学生证包含的信息请参看自己的学生证; (2) 给定学号,显示某位学生的学生证信息; (3) 给定某个班级的班号,显示该班所有学生的学生证信息; (4) 给定某位学生的学号,修改该学生的学生证信息; (5) 给定某位学生的学号,删除该学生的学生证信息; *(6) 按出生日期对全班学生的信息进行排序; -(1) via the keyboard, enter the student ID information of a studen
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:6528
    • 提供者:袁浩晨
  1. yuanchengxu

    0下载:
  2. 线性表源程序,不用再自己敲键盘了,因为平时看试验书的时候,看懂了也要自己敲,很麻烦-Linear table source program, and not to knock his keyboard
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:112443
    • 提供者:小句
  1. test23

    0下载:
  2. 用顺序存储实现栈的初始化、入栈、出栈、取栈顶、判栈空操作。调用以上操作实现判断从键盘输入的括号序列是否匹配。-Stored in order to achieve the initialization of the stack, stack, stack, take the top of the stack and sentenced to the operation of the stack is empty. Call operation to achieve more than the j
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:11424
    • 提供者:陈杰
  1. text

    0下载:
  2. 用顺序存储实现栈的初始化、入栈、出栈、取栈顶、判栈空操作。调用以上操作实现判断从键盘输入的括号序列是否匹配。-Stored in order to achieve the initialization of the stack, stack, stack, take the top of the stack and sentenced to the operation of the stack is empty. Call operation to achieve more than the j
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:13166
    • 提供者:陈杰
  1. datastructure

    0下载:
  2. 实现一个内存分配模拟系统,分配的原则参见“伙伴系统”。 要点:使用链表保存各块内存信息,同一个链表中保存的各块大小相同。 链表中的每个结点形式如下: 从键盘输入欲分配的块的大小,系统给出分配结果,并在屏幕上显示出来(图示方式或文本方式)。 -A memory allocation simulation system, the principle of allocation see the " buddy system" . Po
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:30206
    • 提供者:luokun
  1. datakechengsheji

    0下载:
  2. 建立二叉树的三叉链式存储结构,在此基础上完成下列算法: 1) 从键盘上输入二叉树的各个结点,建立三叉链表 2) 输出该二叉树 3) 非递归的层次遍历算法 4) 非递归的先序遍历、中序遍历、后序遍历算法 5)查找指定结点的双亲。 6)查找指定结点x,若存在返回true,否则返回false 7)求各结点的度 -data course design
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:246108
    • 提供者:夏芝亮
  1. Hash

    0下载:
  2. 散列表实现电话号码查找系统。 (1) 设每个记录有下列数据项:用户名、电话号码、地址; (2) 从键盘输入各记录,以用户名(汉语拼音形式)为关键字建立散列表; (3) 采用一定的方法解决冲突; (4) 查找并显示给定电话号码的记录; -The hash table phone number lookup system. (1) Let each record the following data: user name, phone number, address in
  3. 所属分类:Data structs

    • 发布日期:2017-05-06
    • 文件大小:1535694
    • 提供者:卧龙
  1. students

    0下载:
  2. 基于C语言的学生信息管理系统。包含查插删改的功能。并且添加了清除键盘缓冲区的函数。适合C语言初学者。-C-based student information management system. Contains the functions check the plug excision. And add a function to clear the keyboard buffer. Suitable for the C language for beginners.
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:224006
    • 提供者:张鑫
  1. MazeByWen7.9

    0下载:
  2. 用C++实现的,mfc编的一个迷宫程序,用回溯法走迷宫~可以实现自动生成迷宫,自己设计迷宫,自动找路,键盘输入找路,自动找路时可以设置时间间隔。-A maze procedure the C++, mfc series, with backtracking maze- can automatically generate the maze design their own maze, and automatically find a way, the keyboard input to find
  3. 所属分类:Data structs

    • 发布日期:2017-05-16
    • 文件大小:4254901
    • 提供者:温晓
  1. SqList

    0下载:
  2. 1、顺序表基本操作的实现 [问题描述] 当我们要在顺序表的第i个位置上插入一个元素时,必须先将顺序表中第i个元素之后的所有元素依次后移一个位置,以便腾空一个位置,再把新元素插入到该位置。若是欲删除第i个元素时,也必须把第i个元素之后的所有元素前移一个位置。 [基本要求] 要求生成顺序表时,可以键盘上读取元素,用顺序存储结构实现存储。 -1, the basic operation of the order of the table to achieve [Problem Descr
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:95860
    • 提供者:yoyoqiu
  1. jxy

    0下载:
  2. 能够用键盘控制生成随机数 并排序。同时比较不同算法的时间-Can be controlled using the keyboard generates random numbers and sort. Compare different algorithms time
  3. 所属分类:Data structs

    • 发布日期:2017-11-09
    • 文件大小:1329
    • 提供者:蒋旭
  1. 4

    0下载:
  2. Hash表应用 任务 :设计散列表实现电话号码查找系统。 基本要求: 1) 设每个记录有下列数据项:电话号码、用户名、地址; 2) 从键盘或文件输入各记录,不少于30个,以电话号码为关键字建立散列表; 3) 采用开放定址的方法解决冲突; 4) 查找并显示给定电话号码的记录; -Hash Table Application task: design hashtable phone number lookup system. Basic requirements: 1
  3. 所属分类:Data structs

    • 发布日期:2017-11-04
    • 文件大小:1773271
    • 提供者:一一
  1. 2-3-tree

    0下载:
  2. 2—3树是这样一种树: A.每个非叶子结点都有2个或3个儿子; B.每条众树根到树叶的路径长度相等; C.只有一个根结点的树也是2—3树。 本题目要求从键盘输入以整数序列,建立一棵2-3树。所以我的建树构思为以2-3树的插入操作来进行建树。-2-3 tree is such a tree: A. Each non-leaf node has two or three sons B. Each congregation tree roots to leaves is equal
  3. 所属分类:Data structs

    • 发布日期:2017-11-08
    • 文件大小:1667
    • 提供者:冯读庆
  1. chctdsy

    0下载:
  2. 以下是归并算法的顺序表实现程序,请对照课本P38的分析,理解算法思路以及顺序表基本运算的运用方法。要求建立工程,编写合适的main(),建立三个顺序表对象,对第一、二两个顺序表,分别从键盘输入有序数据,使这两个顺序表成为有序的表,然后调用归并算法把两个有序表合并为一个有序表,存储于第三个顺序表中。-the following is the sequence table merging algorithm implementation procedures, control textbooks P
  3. 所属分类:Data structs

    • 发布日期:2017-11-24
    • 文件大小:2496
    • 提供者:凌洛
  1. binary_tree

    0下载:
  2. 从键盘输入二叉树的两种遍历结果,在内存中建立二叉链表,根据遍历结果恢复该二叉树,并在屏幕上显示该二叉树。-Binary list results from two keyboard input binary tree traversal, memory, and restore the binary tree traversal results, and the binary tree is displayed on the screen.
  3. 所属分类:Data structs

    • 发布日期:2017-11-09
    • 文件大小:3278
    • 提供者:王伟
  1. contain

    0下载:
  2. 判断从键盘输入的两数之间是否满足相互包含的关系-find ouf if a is contained in b
  3. 所属分类:Data structs

    • 发布日期:2017-11-20
    • 文件大小:4121
    • 提供者:默笙
  1. Restructuring

    0下载:
  2. 从键盘内任意输入两个有序的不减线性表,分别构建线性单链表,然后将这两个线性单链表重新组合为一个有序的不减线性单链表,按照链表顺序依次输出重组链表的数值。-Any input from the keyboard and orderly unabated two linear tables were constructed linear single linked list, then the two linear reassembled into a single list ordered una
  3. 所属分类:Data structs

    • 发布日期:2017-11-23
    • 文件大小:786
    • 提供者:刘燕
  1. Biaodashi

    0下载:
  2. 实现从键盘终端输入语法正确的算术表达式,计算出表达式的值。-Terminal input from a keyboard, grammatically correct arithmetic expression to calculate the value of the expression.
  3. 所属分类:Data structs

    • 发布日期:2017-05-04
    • 文件大小:1078555
    • 提供者:
  1. tu

    2下载:
  2. 图的深度优先与广度优先遍历 利用邻接矩阵或邻接表作为存储结构建立一个无向图,每个顶点中存放一种水果名(例如apple、orange、banana等,并要求从键盘输入),顶点数不少于5个。要求分别以深度优先搜索(DFS)和广度优先搜索(BFS)进行遍历,输出遍历结果。 -Depth-first and breadth-first traversal         Adjacency matrix or adjacency list use as
  3. 所属分类:Data structs

    • 发布日期:2016-01-25
    • 文件大小:46080
    • 提供者:路东方
  1. aPaaPaaaP....

    0下载:
  2. 求s=a+a aa+aaaa+aa...a的值,其中a是一个数字。例如2+22+222+2222+22222(此时共有5个数相加),几个数相加有键盘控制。 1.程序分析:关键是计算出每一项的值。 -S = a+aa+aaa+aaaa+aa ... a required value, wherein a is a number. For example 2+22+222+2222+22222 (In this case the number of the sum total of fi
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:591
    • 提供者:郭同学
« 1 2 ... 4 5 6 7 8 910 »
搜珍网 www.dssz.com