Welcome![Sign In][Sign Up]
Location:
Search - AOE

Search list

[J2MEAOE

Description: Age of Empires for Sciphone
Platform: | Size: 199680 | Author: -red- | Hits:

[DocumentsAoe_basicsly_VN

Description: AOE tutorial, basicly about this games and how to play
Platform: | Size: 20480 | Author: Dang Son | Hits:

[Data structsCriticalPath

Description: 用顶点表示事件,弧表示活动,弧上的权值表示活动持续的时间的有向图叫AOE 。AOE网常用于估算工程完成时间。可通过本算法来计算关键路径-Activity On Edge Network
Platform: | Size: 3072 | Author: 吉铭 | Hits:

[Windows DevelopAoEr10

Description: AoE Protocol Definition
Platform: | Size: 21504 | Author: hanumantha | Hits:

[Speech/Voice recognition/combineaoe

Description: 语音提取与识别,实现对语音信号基因频率的提取与分析-To achieve the extraction of gene frequencies of the signal
Platform: | Size: 1024 | Author: ldx007 | Hits:

[Data structspath01

Description: C++ 寻找关键路径 根据AOE网络寻找关键活动,确定关键路径 最好的解决方式-C++ find the critical path
Platform: | Size: 236544 | Author: | Hits:

[source in ebookproject

Description: 使用aoe网络,输入工程,可添加删除边!并有保存和读取图的功能-Use aoe network, enter the project, you can add remove side! And has the function of saving and reading map
Platform: | Size: 1121280 | Author: 王文 | Hits:

[VC/MFCaoe

Description: 关键路径 实现 c语言实现简单 栈求工程的关键路径-The critical path to achieve a simple stack c language project critical path requirements
Platform: | Size: 1024 | Author: 林振武 | Hits:

[OtherGraphAlgorithm

Description: 图论通用各种算法,有大量实例,包括BFS,DFS,Prim, kruskal,Dijkstra,Floyed,Aoe,Aov,topsort-General algorithms of graph theory, a large number of cases, including the BFS, DFS, Prim, kruskal, Dijkstra, Floyed, Aoe, Aov, topsort
Platform: | Size: 1036288 | Author: 张前东 | Hits:

[Other7

Description: AOE网。实现AOE网查找关键路径。分别列出每个活动的最短时间和最长时间-failed to translate aaaaaaaa
Platform: | Size: 1024 | Author: 趁刚 | Hits:

[Software Engineeringguanjianlujing

Description: 数据结构 实现AOE网的关键路径算法-AOE network data structure to achieve the critical path algorithm
Platform: | Size: 2048 | Author: 灰色 | Hits:

[assembly language02-M

Description: 问题描述:设计一个程序求出完成整项工程至少需要多少时间以及整项工程中的关键活动。 基本要求: (1)对一个描述工程的AOE网,应判断其是否能够顺利进行。 (2)若该工程能顺利进行,输出完成整项工程至少需要多少时间,以及每一个关键活动所依附的两个顶点、最早发生时间、最迟发生时间。-Problem description: Design a program to complete the whole project at least find the time required and the whole project is a key activity. Basic requirements: (1) a description of the project AOE network, should determine whether it can proceed smoothly. (2) If the project can proceed smoothly, the output to complete the whole project at least the number of times, and each of the key activities of the two vertices of attachment, the earliest time, the latest time of occurrence.
Platform: | Size: 2048 | Author: | Hits:

[Data structsMFC_Critical_Path

Description: 关键路径,数据结构的AOE问题的图形界面表示,MFC经典例题-Critical path, data structure, said graphical interface AOE issues, MFC classic example
Platform: | Size: 305152 | Author: yang | Hits:

[Mathimatics-Numerical algorithmslibdatrie-0.2.4.tar

Description: 这是一个经典的通过双数组实现Trie树的示例-This is an implementation of double-array structure for representing trie, as proposed by Junichi Aoe
Platform: | Size: 359424 | Author: | Hits:

[Data structscriticalpath

Description: AOE网络,求关键路径算法,C++语言描述。内含用户自定义堆栈类stack.-AOE network seeking the critical path algorithm described by C++ language
Platform: | Size: 30720 | Author: | Hits:

[Data structslujin

Description: 关键路径 AOE 通过堆栈来实现 C++语言的-critical path
Platform: | Size: 10240 | Author: 王彤 | Hits:

[Otherguanjianlujing

Description: 关键路径 C++语言描述的新算法 ,但没有图形界面-AOE ,critical path
Platform: | Size: 116736 | Author: 王彤 | Hits:

[Data structsCriticalpath

Description: 本程序实现了用数据结构中的图形知识编写一个求无循环有向帯权图(即通常所说的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 comparing,and then calculate the critical path.
Platform: | Size: 2048 | Author: 郭琼 | Hits:

[assembly languagecnmbd

Description: 计算工程完成的关键路径 说明: AOE 网络是有向无环加权图,其中顶点表示事件,弧表示活动,权表示活动持续的时间,通常可以用来估算工程完成的时间,即图中从开始点到结束点之间最长的路径对应的时间。请完成一个程序,完成下列任务: 1 、计算 AOE 网络对应的拓扑排序。如果排序结果不唯一,请输出按照从小到大的顺序排列的结果。从小到大的顺序就是输入的节点序列顺序(参见下面关于输入格式的说明)。如图1中满足要求的拓扑排序是: a-b-c-d-e-f-g-h-k ,图2中满足要求的拓扑排序是:v1-v3-v5-v2-v6-v4-v7-v8-v9 2 、计算 AOE 网络的关键路径。注意关键路径可能不唯一,要求输出所有的关键路径。同样,按照是按照从小到大的顺序输出。例,如果得到两条关键路径,分别是0-1-3-6-8-9和0-1-3-4-5-8-9,那么先输出后一条路径,因为两条路径中前三个节点相同,而后一条路径第四个节点的编号小。 测试用例的输入输出格式说明: 输入: 节点的个数,边的条数; 各个节点的名称序列 边: < 起点 , 终点 , 权值 > 。说明起点和终点是在各个点在输入序列中的位置,如图1中边 <a,b> 表示为 <0,1,6> 。 输出: 拓扑排序; -failed to translate
Platform: | Size: 2048 | Author: 杨晨 | Hits:

[Data structsguanjianlujin

Description: 用MFC做的数据结构中的关键路径求解,记得首先必须创建一个AOE网-Solving the critical path of the data structure of the MFC to do, remember that you must first create an AOE network
Platform: | Size: 1992704 | Author: 彭博 | Hits:
« 1 2 3 45 6 »

CodeBus www.codebus.net