CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 算法 数据结构

搜索资源列表

  1. traveler

    0下载:
  2. 旅行商问题 c算法 回溯算法 数据结构 十分有用-travelers c algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:1849
    • 提供者:sun
  1. student

    0下载:
  2. 学生考勤管理系统 考勤信息记录了学生的缺课情况,它包括:缺课日期、第几节课、课程名称、学生姓名、缺课类型(迟到、早退、请假及旷课)。试设计一考勤管理系统,使之能提供以下功能: 1.录入学生的缺课记录; 2.修改某个学生的缺课记录; 3.查询某个学生的缺课情况; 4.统计某段时间内,旷课学生姓名及旷课次数,按旷课次数由多到少排序; 5.统计某段时间内,有学生旷课的课程及旷课人次,按旷课人次由多到少排序; 6.系统以菜单方式工作。 具体要求如下:
  3. 所属分类:CSharp

    • 发布日期:2017-04-03
    • 文件大小:5661
    • 提供者:万涛
  1. jie

    0下载:
  2. 算法数据结构的背包问题-Data structure algorithm knapsack problem. . . . . . . . . . . . . . . .
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:583
    • 提供者:guo jie
  1. migong

    0下载:
  2. 经典的迷宫算法,数据结构课程设计可以直接使用。或者研究算法的经典案例-The classic maze algorithms, data structures, curriculum design can be used directly. Or a classic case study algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:917
    • 提供者:kitty
  1. Kruskal

    0下载:
  2. 最短路径算法 库鲁斯卡尔算法 数据结构算法实现-Shortest path algorithm
  3. 所属分类:GUI Develop

    • 发布日期:2017-11-30
    • 文件大小:62705
    • 提供者:yy
  1. range

    0下载:
  2. 数据结构排序算法,包含大部分排序算法 数据结构排序算法,包含大部分排序算法-Sorting algorithm of data structure, including most of sorting algorithm
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:349273
    • 提供者:毛辉辉
  1. Shortest-Path

    0下载:
  2. 在网络通信中,经常需要求最短路径。但完全采用最短路径传输有这样一个问题:如果最终在两个终端节点之间给出的最短路径只有一条,则在该路径中的任一个节点或链路出现故障时,信号传输将面临中断的危险。因此,对网络路由选择作了以下改进:为任意两节点之间通信提供两条路径供其选择,即第一最短路径、第二最短路径.使用数据结构编程实现,程序=算法+数据结构的很好体现-In network communication, often request the shortest path. But totally shor
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:274455
    • 提供者:冉戆
  1. MGZ.RAR

    0下载:
  2. 这是我的C++课程设计,主要功能是实现高精度的加法,属于算法数据结构范畴-This is my C++ curriculum design, the main function is to achieve high-precision addition, belong to the scope of the data structure algorithms.
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-30
    • 文件大小:234554
    • 提供者:马国祯
  1. magz.RAR

    0下载:
  2. 这是我的C++课程设计,主要功能是用坐标实现一个余弦函数的绘制,属于算法数据结构范畴。-This is my C++ curriculum design, the main function is realized by a coordinate to draw a cosine function algorithm data structure belonging to the category.
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-23
    • 文件大小:215465
    • 提供者:马国祯
  1. dancer

    0下载:
  2. 假设在周末舞会上,男士和女士进入舞厅时,各自排成一队。跳舞开始时,依次从男队和女队的队头上各出一人配成舞伴。若两队初始人数不相同,则较长的那一队中未配对者等待下一轮舞曲。现要求写一算法模拟上述舞伴配对问题。(Suppose, at the weekend dance, men and women enter a ballroom together in a row. Dancing began, followed by men and women from the teams head out
  3. 所属分类:其他

    • 发布日期:2017-12-30
    • 文件大小:2048
    • 提供者:伊伊丶
  1. ConsoleApplication5

    0下载:
  2. 使用克鲁斯卡尔算法和普里姆算法,使用图形化函数graph.h画出效果图,音频背景部分需自行添加,采用按键监听,直接使用键盘对应按键选择操作(Using the Kruskal algorithm and prim algorithm, using graphical graph.h function to draw renderings, the need to add the background audio part, adopts the key to monitor, directly
  3. 所属分类:Windows编程

    • 发布日期:2017-12-22
    • 文件大小:38713344
    • 提供者:~追梦~
  1. 新建文本文档

    0下载:
  2. 一、循环队列的基础知识 1.循环队列需要几个参数来确定 循环队列需要2个参数,front和rear 2.循环队列各个参数的含义 (1)队列初始化时,front和rear值都为零; (2)当队列不为空时,front指向队列的第一个元素,rear指向队列最后一个元素的下一个位置; (3)当队列为空时,front与rear的值相等,但不一定为零; 3.循环队列入队的伪算法 (1)把值存在rear所在的位置; (2)rear=(rear+1)%maxsize ,其中maxsize代表数
  3. 所属分类:其他

    • 发布日期:2017-12-23
    • 文件大小:1024
    • 提供者:刘祥
  1. 实验五

    0下载:
  2. 最短路径求解 应用弗洛伊德算法 可以解决数据结构中的一些图论问题(you can use this program to solve the problem which need to calculate the shortest distant)
  3. 所属分类:其他

    • 发布日期:2017-12-24
    • 文件大小:275456
    • 提供者:Mathew Ridgway
  1. 数据结构 程序设计 机器调度问题

    0下载:
  2. 多机调度问题的解决方案,算法进行合理调度,使得在m台机器上处理n个作业所需要的处理时间最短。(The solution of multi machine scheduling problem)
  3. 所属分类:界面编程

    • 发布日期:2017-12-18
    • 文件大小:155648
    • 提供者:程程1223
  1. Delaunay算法

    1下载:
  2. 利用随机增量法与DCEl数据结构完成Delaunay算法(C#),程序内附大量注释,能够帮助完成对数据结构及Delaunay算法的了解。(Fast generation of Delaunay triangulation)
  3. 所属分类:其他

    • 发布日期:2017-12-28
    • 文件大小:92160
    • 提供者:xtayhame
  1. 作业1.2

    0下载:
  2. 公鸡每只5元,母鸡每只3元,小鸡3只一元,N元买N只鸡,有多少种买法? 1. 试编程解决买鸡问题。用户输入N,能输出所有的买法,其中N以值调用的形式在函数参数表中出现。 2. 分析算法的复杂度,结合复杂度分析考虑算法如何优化。(5 yuan per cock, 3 yuan per hen, 3 chicks a dollar, N yuan to buy N chicken, how many kinds of buy? 1. trial programming to solve the
  3. 所属分类:其他

    • 发布日期:2018-01-01
    • 文件大小:25600
    • 提供者:豆豆呀
  1. list

    0下载:
  2. 分别以线性表和单链表作存储结构,各写一个实现线性表就地逆置的算法(The linear table and the single linked list are used as the storage structure respectively, and each algorithm is written in place of the linear table)
  3. 所属分类:其他

    • 发布日期:2018-01-03
    • 文件大小:1024
    • 提供者:LINcwf
  1. 数据结构-单链表-实验报告

    0下载:
  2. 1.实验目的及要求 1.1实验目的: (1)掌握线性表的顺序存储结构; (2)验证单链表及其基本操作的实现; (3)进一步理解算法与程序的关系,能够将单链表算法转换为对应的程序。 1.2 实验要求: (1)用头插法(或尾插法)建立带头结点的单链表; (2)对已建立的单链表实现插入、删除、查找等基本操作。(1 the purpose and requirements of the experiment 1.1 the purpose of the experiment:
  3. 所属分类:Windows编程

  1. 162209104229 张瑞 实验一

    0下载:
  2. 了解和掌握线性表的逻辑结构和顺序、链式存储结构,掌握两种存储结构的基本算法及相关的时间性能分析。 二、要求: 任务一:建立一顺序表,实现其基本操作。 任务二:建立一个数据域定义为字符串的单链表,在链表中不允许有重复的字符串;根据输入的字符串,先找到相应的结点,后删除(Understand and master the logical structure and sequence of linear tables, chain storage structure, master the ba
  3. 所属分类:其他

    • 发布日期:2018-01-08
    • 文件大小:9216
    • 提供者:神龟
  1. shuju5

    0下载:
  2. 一、实验目的 1、进一步掌握指针变量、动态变量的含义。 2、掌握二叉树的结构特性,以及各种存储结构的特点和适用范围。 3、掌握用指针类型描述、访问和处理二叉树的运算。 二、实验内容 1、以二叉链表作存储结构,试编写前序、中序、后序遍历二叉树的算法。(First, the purpose of the experiment 1. Further grasp the meaning of the pointer variable and the dynamic variable.
  3. 所属分类:Windows编程

    • 发布日期:2018-01-09
    • 文件大小:11264
    • 提供者:天雷丶祭
« 1 2 3 4 56 7 8 9 10 ... 43 »
搜珍网 www.dssz.com