搜索资源列表
file
- 二叉树上结点的路径,航班信息的查询与检索,赫夫曼编码的应用,AOE网,大整数计算5个数据结构里比较实际的编程例子,自己写的
关键路径算法
- 运行程序后!由于为了测试方便,AOE网初始化,所以,运行程序后,即可得到结果,结果包括拓扑排序和关键路径。-operating procedures! In order to facilitate the testing because, AOE network initialization, and operating procedures, can be obtained results include topological sorting and Critical Path.
AOE网
- AOE网算法,VC实现-AOE network algorithm, VC
关键路径
- (1)输入E条弧<j,k>,建立AOE-网的存储结构 (2)从源点v出发,令ve[0]=0,按拓扑排序求其余各项顶点的最早发生时间ve[i](1<=i<=n-1).如果得到的拓朴有序序列中顶点个数小于网中顶点数n,则说明网中存在环,不能求关键路径,算法终止 否则执行步骤(3)(3)从汇点v出发,令vl[n-1]=ve[n-1],按逆拓朴排序求其余各顶点的最迟发生时间vl[i](n-2>=i>=2). (4)根据各顶点的ve和vl值,求每条弧s的最早发生时间e(
AOE-net
- 该程序能实现的功能,若活动图有回路则无法计算出关键路径,即解决了判断工程的可行性问题。通过对工程活动的输入,可以建立任意的AOE网进行判断。对于输入的网,可以计算出每个活动的最早开始时间,最迟开始时间和全工程可以完成的最早时间,并找出关键路径和关键活动。-the program can achieve the functional, if a circuit map activities can not be calculated critical path, that is a judgmen
aoe网络
- 我自己写的AOE网络算法-I wrote it myself AOE Network Algorithm
guanjianlujin
- 解决工程项目aoe-网的关键路径的问题,用到了拓扑排列 求最早发生时间 活动的最迟完成时间-Solution aoe-Net project critical path of the problem, use a topological order for the first time the activities took place at the latest completion time
aoe
- AOE网关键路径(Activity On Edge) 数据结构其中前两个数代表两个顶点之间的通路,后两个数分别代表最早开始时间和最迟开始时间 带有*的通路组成关键路径; -Key path AOE Gateway (Activity On Edge) the first two of which data structure to represent the path between two vertices, the number of the latter two represent t
CriticalPath
- 用顶点表示事件,弧表示活动,弧上的权值表示活动持续的时间的有向图叫AOE 。AOE网常用于估算工程完成时间。可通过本算法来计算关键路径-Activity On Edge Network
7
- AOE网。实现AOE网查找关键路径。分别列出每个活动的最短时间和最长时间-failed to translate aaaaaaaa
02-M
- 问题描述:设计一个程序求出完成整项工程至少需要多少时间以及整项工程中的关键活动。 基本要求: (1)对一个描述工程的AOE网,应判断其是否能够顺利进行。 (2)若该工程能顺利进行,输出完成整项工程至少需要多少时间,以及每一个关键活动所依附的两个顶点、最早发生时间、最迟发生时间。-Problem descr iption: Design a program to complete the whole project at least find the time required and
Criticalpath
- 本程序实现了用数据结构中的图形知识编写一个求无循环有向帯权图(即通常所说的AOE网)中从起点到终点所有路径,经分析、比较求出长度最大路径,从而求出关键路径。-This code is used to calculate the every path from the starting piont to the ending piont of an AOE Figure,then carry out the maximum path after analysizing and comparin
data-structure-AOE-net
- 本软件围绕工程活动图AOE网的应用这一主题,用图形化的界面实现了AOE网的建立、判断工程可行性、计算工程活动开始时间、确定关键路径和关键活动等功能。 具体功能: 已知假想的工程活动图AOE网,试设计一个算法,要求: (1) 判断工程是否可行 (2) 求出工程中每个活动的最早开始时间e(i),最迟开始时间l(i)和全工程可以完成的最早时间 (3) 确定工程中关键路径和可使整个活动的工期缩短的关键活动 源码在文件夹“源代码清单”中。程序开发时所用的文件在文件夹“配
guanjianlujin
- 用MFC做的数据结构中的关键路径求解,记得首先必须创建一个AOE网-Solving the critical path of the data structure of the MFC to do, remember that you must first create an AOE network
AOE
- 数据结构、AOE、关键路径。 求关键路径 读入AOE网数据,建立其邻接表存储结构; 输出各关键活动的起点编号、终点编号和权; 输出最短工期;-Data structure, AOE, the critical path. Finding the Critical Path reads the AOE network data, establish its adjacency list storage structure output the shortest durati
AOE-v1.1
- 本程序用C语言编写,输出各顶点事件的最早发生时间ve,输出各顶点事件的最迟发生时间v,输出关键路径,关键路径可能不止一条.AOE网可以计算工程的最短工期,在各种工程领域内都有着广泛的应用-the shortest path
AOEv2.0.0
- 利用图结构中的AOE网工具对工作流进行建模,设计出一个轻量级的工作流系统,完成流程设计、流程调度、流程监控功能。-The use of graph structure AOE network tools for workflow modeling, design a lightweight workflow system, complete the process design, process scheduling, process monitoring functions.
AOETEST
- 基于AOE网的简单工作流学院请假系统,实现请假,审批,登记等基本功能-Leave based on simple workflow College AOE network system, leave, approval, registration and other basic functions
AOE
- 2、设计一个程序求出完成整项工程至少需要多少时间以及整项工程中的关键活动。 实验步骤: ①、在Java语言编辑环境中新建程序,输入如下图所示的AOE网; ②、按照关键路径求取步骤,求出各个顶点的最早开始时间和最迟开始时间; ③、求出各个活动的最早开始时间和最迟开始时间; ④、找出该AOE网的关键路径,并计算出该项目的完成时间。-How much time, and the whole project is a key activity in the design of
AOE
- 用邻接表存储有向图并建立AOE网; 用图形的形式输出有向图; 输出关键路径和关键活动。-Adjacency table is stored AOE directed graph and the establishment of networks In the form of graphics output directed graph Output critical path and critical activities.