算法分析与设计作业2

1.问题
用Floyd算法求解下图各个顶点的最短距离。写出Floyd算法的伪代码和给出距离矩
阵(顶点之间的最短距离矩阵)
对于下图使用Dijkstra算法求由顶点a到顶点h的最短路径

2.解析
Floyd:
因为数据量较小,利用邻接矩阵来存图,要求各个顶点之间的距离,每个节点只有路径只有两种状态,一种是i直接到j,一种是i经过另一个节点k再到达j,我们通过不断比较两种状态的长度,寻找最短路。
Dijkstra:
因为数据量较小,利用邻接矩阵来存图,要求单源最短路,我们定义一个dis数组来记录每个节点到达起始点的距离,然后用标记数组vis来判断是否已经寻找当前节点的最优情况,不断完善dis数组,最终寻找到单源最短路。

3.设计
floyd:

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<cctype>
#include<iomanip>
#include<map>
#include<vector>
#include<list>
#include<deque>
#include<stack>
#include<queue>
#include<set>
#include<cctype>
#include<string>
#include<stdexcept>
#include<fstream>
#include<sstream>
#include<sstream>
#define mem(a,b) memset(a,b,sizeof(a))
#define debug() puts("what the fuck!")
#define dedebug() puts("what the fuck!!!")
#define ll long long
#define ull unsigned long long
#define speed {ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); };
using namespace std;
const double PI = acos(-1.0);
const int maxn = 2e5 + 10;
const int N = 2e2 + 10;
const ll INF = 1e18;
const ll mod = 1e9 + 7;
const int inf = 0x3f3f3f3f;
const double esp_0 = 1e-6;
const double gold = (1 + sqrt(5)) / 2;
ll gcd(ll x, ll y) {
	return y ? gcd(y, x % y) : x;
}
int n, m;
int g[N][N];
void init() {
	for (int i = 1; i < N; ++i) {
		for (int j = 1; j < N; ++j) {
			if (i == j)g[i][j] == 0;
			else g[i][j] = inf;
		}
	}
}
void floyd() {
	for (int k = 1; k <= n; ++k) {
		for (int i = 1; i <= n; ++i) {
			for (int j = 1; j <= n; ++j) {
				if (g[i][j] > g[i][k] + g[k][j]) {
					g[i][j] = g[i][k] + g[k][j];
				}
			}
		}
	}
	for (int i = 1; i <= n; ++i) {
		for (int j = 1; j <= n; ++j) {
			cout << g[i][j] << " ";
		}
		cout << endl;
	}
}
signed main(){
	init();
	cin >> n >> m;//n个点,m条边
	for (int i = 1; i <= m; ++i) {
		int u, v, w;
		cin >> u >> v >> w;
		g[u][v] = w;
	}
	floyd();
	return 0;
}

dijkstra:

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<cctype>
#include<iomanip>
#include<map>
#include<vector>
#include<list>
#include<deque>
#include<stack>
#include<queue>
#include<set>
#include<cctype>
#include<string>
#include<stdexcept>
#include<fstream>
#include<sstream>
#include<sstream>
#define mem(a,b) memset(a,b,sizeof(a))
#define debug() puts("what the fuck!")
#define dedebug() puts("what the fuck!!!")
#define ll long long
#define ull unsigned long long
#define speed {ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); };
using namespace std;
const double PI = acos(-1.0);
const int maxn = 2e5 + 10;
const int N = 2e2 + 10;
const ll INF = 1e18;
const ll mod = 1e9 + 7;
const int inf = 0x3f3f3f3f;
const double esp_0 = 1e-6;
const double gold = (1 + sqrt(5)) / 2;
ll gcd(ll x, ll y) {
	return y ? gcd(y, x % y) : x;
}
int n, m;
int g[N][N];
int vis[N];
int dis[N];
void init() {
	for (int i = 1; i < N; ++i) {
		for (int j = 1; j < N; ++j) {
			if (i == j)g[i][j] == 0;
			else g[i][j] = inf;
		}
	}
}
void floyd() {
	for (int k = 1; k <= n; ++k) {
		for (int i = 1; i <= n; ++i) {
			for (int j = 1; j <= n; ++j) {
				if (g[i][j] > g[i][k] + g[k][j]) {
					g[i][j] = g[i][k] + g[k][j];
				}
			}
		}
	}
	for (int i = 1; i <= n; ++i) {
		for (int j = 1; j <= n; ++j) {
			cout << g[i][j] << " ";
		}
		cout << endl;
	}
}
void dijkstra(int st) {
	mem(vis, 0);
	mem(dis, inf);
	dis[st] = 0;
	for (int i = 1; i <= n; ++i) {
		int step = -1;
		int min = inf;
		for (int j = 1; j <= n; ++j) {
			if (!vis[j]&&min > dis[j]) {
				step = j;
				min = dis[j];
			}
		}
		if (step == -1)break;
		vis[step] = 1;
		for (int j = 1; j <= n; ++j) {
			if (!vis[j] && g[step][j] != 0) {
				if (dis[j] > dis[step] + g[step][j])
					dis[j] = dis[step] + g[step][j];
			}
		}
	}
}
signed main(){
	init();
	cin >> n >> m;//n个点,m条边
	for (int i = 1; i <= m; ++i) {
		char u, v;
		int w;
		cin >> u >> v >> w;
		g[u-'a'+1][v-'a'+1] = w;
	}
	//for (int i = 1; i <= n; ++i) {
	//	for (int j = 1; j <= n; ++j) {
	//		cout << g[i][j] << " ";
	//	}
	//	cout << endl;
	//}
	dijkstra(1);
	cout << dis[8] << endl;
	return 0;
}

4.分析
Floyd:通过三个循环遍历每一个节点,时间复杂度约为O(V3)
Dijkstra:未使用堆优化,通过循环来遍历节点,时间复杂度约为O(V(V+V)),为O(V2);
5.源码
floyd
dijkstra

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值