搜索资源列表
zuidlj
- 医院选址问题的最短路径,FLOYD算法,比较简单,但是对数据结构不熟的朋友,读起来或许有点吃力
Graph
- 该程序是为了解决医院的选址问题,利用了最短路径的方法-The program is to address the siting of the hospital, using the shortest path method
Untitled1
- 医院选址,C++实现医院选址程序,含有三种算法的实现!-Hospital site
Hospitalsite
- 医院选址,假设有n个村庄,用邻接矩阵表示连接情况,并用floyd算法求出倒其他村庄路惩治和最短的村庄作为医院的建址-Hospital site, assume that n villages, with the initial understanding that the adjacency matrix and floyd algorithm with other villages was obtained and the shortest way to punish the village
haidianqu
- 海淀区社区医院分布规划程序,可为政府卫生服务中心规划提供选址政策向导-Haidian District, the distribution of the planning process in community hospitals
xiugai
- 医院选址问题,使用SQL2000编写,用floyd和wallshall算法来进行医院地址的设计,这是完整的代码-Hospital location problem, using SQL2000 prepared, using Floyd and wallshall algorithms to address of hospital design, this is a complete code
4
- 有n个村落分布在一条公路的沿线,为方便村民们就医,现打算在公路沿线修建一所医院。 由于各村落人数、年龄分布不同等原因,每个村落对医院的需求程度也不同。这里需求程度以一个非负的权值w表示:w越大,就医需求越大。对于一个选址方案,Σwi*di作为衡量其合理性的指标,其中wi和di分别表示第i个村落的权值和距离医院的距离,该指标越小,对应的选址就越优。请给出医院修建的最优位置。-There are n number of villages spread along a road, and
医院选址
- n个社区之间的交通图用有向加权图来表示,现在要从这n个社区中选择一个社区建一所医院,问这所医院应建在哪个社区?能使所有的社区医院都比较近,能使您医院最远的社区到医院最近,或能使所有的社区到大医院的距离之和达到最小。(The traffic map between the N communities is represented by a directed weighted map. Now, a community is selected from one of the N communitie
医院选址—Visual C++ 6.0实现
- 问题:给定n个村庄之间的交通图,若村庄i和j之间有道路,则将顶点i和j用边连接,边上的Wij表示这条道路的长度。现在要从这n个村庄中选择一个村庄建一所医院,问这所医院应建在哪个村庄才能使离医院最远的村庄到医院的路程最短? 内容:用C++实现,内含源代码和详细实验过程。