#include <stdio.h>
#include <time.h>
#include <stdlib.h> #define MAXN 150 //最大节点数
#define INF ((1<<31)-1) //无穷大数 int dist[MAXN][MAXN]; //记录两节点之间的距离
int parent[MAXN][MAXN]; //记录节点a到b路径中b的父节点 double random_d() //生成0~1间的随机数
{
return (double)rand()/RAND_MAX;
} int random_i(int m) //生成0~m间的随机数
{
return (int)(random_d()*(m-) + 0.5);
} void initial(int n) //初始化dist数组和parent数组
{
int a, b;
for(a = ; a < n; a++)
{
for(b = ; b < n; b++)
{
if(a != b)
{
dist[a][b] = INF; //初始阶段距离未知暂时定为无穷大
parent[a][b] = -;
}else{ //此时a等于b
dist[a][b] = ; //节点a到节点a自身的距离是0
parent[a][b] = a;
}
}
}
} void floyd(int n) //floyd算法,计算两点之间的最短距离
{
int a, b, k;
for(k=; k<n; k++)
{
for(a=; a < n; a++)
{
for(b = ; b < n; b++)
{
if(dist[a][k] == INF || dist[k][b] == INF) continue;
if(dist[a][b] > dist[a][k] + dist[k][b])
{
dist[a][b] = dist[a][k] + dist[k][b];
parent[a][b] = parent[k][b];
}
}
}
}
} void generate_graph(int n) //随机生成一张连通图
{
int i, j, v;
initial(n); //进行初始化
for(i = ; i<n; i++) //保证连通性,让0号节点与其他所有点相连
{
dist[][i] = dist[i][] = random_i() + ; //保证算法起作用,加大权值
parent[][i] = ;
parent[i][] = i;
}
for(i=; i<n; i++ )
{
for(j=i+; j<n; j++)
{
v = random_i() ; //随机生成权值
if(v != )
{
dist[i][j] = dist[j][i] = v;
parent[i][j] = i;
parent[j][i] = j;
}
}
}
} void show_graph(int n) //展示节点之间的连接关系及对应的权值
{
int i, j;
for(i=; i<n; i++)
{
for(j=i+; j<n; j++)
if(dist[i][j] != INF) printf("Direct distance between %d and %d: %d\n", i, j, dist[i][j]);
}
} void show_route(int a, int b) //显示a到b的距离最短的路径
{
if(a == b){
printf("%d", b);
}else{
show_route(a, parent[a][b]);
printf("-%d", b);
}
} int main()
{
int a, b;
srand(time(NULL)); //初始化随机数发生器种子 generate_graph(); //随机生成一张连通图
show_graph(); //展示节点之间的连接关系及对应的权值
floyd(); //floyd算法,计算两点之间的最短距离
printf("Please input starting point and end point: "); //提示用户输入两个节点,两个输入之间用逗号隔开,并保证节点编号小于100
scanf("%d %d", &a, &b); //读取用户输入
printf("The distance is %d\n", dist[a][b]); //输出最短距离
printf("The way is ");
show_route(a, b); //输出最短路径
printf("\n");
//printf("%d\n", INF);
return ;
}

sf的更多相关文章

  1. maven 加入json-lib.jar 报错 Missing artifact net.sf.json-lib:json-lib:jar:2.4:compile

    <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</art ...

  2. net.sf.json.JSONException: There is a cycle in the hierarchy!的解决办法

    使用Hibernate manytoone属性关联主表的时候,如果使用JSONArray把pojo对象转换成json对象时,很容易出现循环的异常.解决的办法就是, 在转换json对象时忽略manyto ...

  3. Json_异常_net.sf.json.JSONException: JSONObject["solution"] not found.

    net.sf.json.JSONException: JSONObject["solution"] not found. 没有这个元素造成的. 问题代码: JSONObject j ...

  4. 使用JSONObject遇到的问题,java.lang.NoClassDefFoundError: net/sf/json/JSONObject

    先是报 java.lang.NoClassDefFoundError: net/sf/json/JSONObject 这个错误, 打开项目属性找到java build path中的libaries,找 ...

  5. Net.Sf.Json java Object to JsonObject

    public class People{ private String name; public void setName(String name){ this.name = name; } publ ...

  6. spark mllib配置pom.xml错误 Multiple markers at this line Could not transfer artifact net.sf.opencsv:opencsv:jar:2.3 from/to central (https://repo.maven.apache.org/maven2): repo.maven.apache.org

    刚刚spark mllib,在maven repository网站http://mvnrepository.com/中查询mllib后得到相关库的最新dependence为: <dependen ...

  7. 获取<img src="sdf.jpg" Big="sf.jpg">中的big的值

    原代码: <img src="sdf.jpg" Big="sf.jpg" onclick="getsrc($(this).attr(" ...

  8. java.lang.ClassNotFoundException: net.sf.json.JSONArray,java.lang.NoClassDefFoundError: net/sf/json/JSONArray jetty跑项目遇到的问题

    2016-05-18 15:44:25 ERROR Dispatcher.error[user:|url:]:L38 - Dispatcher initialization failed Unable ...

  9. 【pom.xml 依赖】使用net.sf.json-lib-2.4-jdk15.jar所需要的其他依赖架包 以及其一直在pom.xml报错的问题

    特此声明: json-lib-2.4-jdk15.jar仅它本身不够,必须如下的几个依赖架包都有才能使用!!! 首先 将.json-lib-2.4-jdk15.jar以及其相关的依赖架包的正确配置给出 ...

  10. net.sf.json 时间格式的转化

    后台代码 //后台代码 response.setCharacterEncoding("UTF-8"); JsonConfig jsonConfig = new JsonConfig ...

随机推荐

  1. UVA 1569 Multiple

    题意: 给定m个1位数字,要求用这些数字组成n的倍数的最小数字,如果无法组成就输出0 分析: BFS,由于n最大5000,余数最多5000,利用余数去判重,并记录下路径即可 代码: #include ...

  2. HTML——JAVASCRIPT——关灯效果

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  3. centos yum 完全卸载依赖

    centos yum 完全卸载依赖    you install a package with yum install, say pdftk, it will pull in a lot of dep ...

  4. Android_神奇的android:clipChildren属性

    正文 一.效果图 看到这个图时你可以先想想如果是你,你怎么实现这个效果.马上想到用RelativeLayout?NO,NO,NO,,, 二.实现代码 <?xml version="1. ...

  5. conda配置python混合开发环境一站式入门【全平台】

    下载安装 清华的镜像 [https://mirror.tuna.tsinghua.edu.cn/help/anaconda/] 官方说明 [http://conda.pydata.org/docs/u ...

  6. jchat:linux聊天程序3:服务器

    makefile: jchat_server: main.o process.o sql.o gcc -o jchat_server main.o process.o sql.o -L/usr/lib ...

  7. Amazon MWS 上传数据 (三) 提交请求

    前面介绍了设置服务和构造请求,现在介绍提交请求. 上传数据,查询上传操作的工作状态,和处理上传操作返回的报告操作使用的Amazon API 分别为:SubmitFeed(),FeedSubmissio ...

  8. VBS解析时候遇到时间

    http://msdn.microsoft.com/en-us/library/aa393687(v=vs.85).aspx MSDN说的很详细么. http://msdn.microsoft.com ...

  9. docker 在esx上的网络配置

  10. at java.util.concurrent.ConcurrentHashMap.hash(ConcurrentHashMap.java:333)

    at java.util.concurrent.ConcurrentHashMap.hash(ConcurrentHashMap.java:333) 原因: null request