单源最短路径

单源最短路径问题,即在图中求出给定顶点到其他任一顶点的最短路径。

1.最短路径的最优子结构性质

该性质描述为:如果P(i, j) = {Vi ...... Vk ... Vs ... Vj}是从顶点i到j的最短路径,k和s是这条路径上的一个中间顶点,那么P(k, s)必定是从k到s的最短路径。

证明:假设P(i, j) = {Vi ...... Vk ... Vs ... Vj}是从顶点i到j的最短路径,则有P(i, j) = P(i, k) + P(k, s) + P(s, j)。如果P(k, s)不是从k到s的最短距离,那么必然存在另一条从k到s的最短路径P'(k, s),那么P'(i, j) = P(i, k) + P'(k, s) + P(s, j) < P(i, j)。则与P(i, j)是从i到j的最短路径相矛盾。因此该性质得证。

2.Dijkstra算法

由上述性质可知,如果存在一条从i到j的最短路径{Vi ...... Vk, Vj}, Vk是Vj前面的一个顶点。那么(Vi ... Vk)也必定是从i到k的最短路径。

为了求出最短路径,Dijkstra就提出了以最短路径长度递增,逐次生成最短路径的算法。比如对于源顶点V0,首先选择其直接相邻的顶点中长度最短的顶点Vi,那么当前已知可得从V0到达Vj顶点的最短距离dist[j] = min{ dist[j], dist[i] + matrix[i][j] }。

根据这种思路:

假设存在G = <V, E>,源顶点为V0, U = {V0}, dist[i]记录V0到i的最短距离,path[i]记录从V0到i路径上的i前面的一个顶点。

(1)从V-U中选择使dist[i]值最小的顶点i,将i加入到U中;

(2)更新与i直接相邻顶点的dist值(dist[j] = min{dist[j], dist[i] + matrix[i][j})

(3)直到U=V,停止。


示例代码:

// Test.cpp : Defines the entry point for the console application.
//

// In Practice, You should use the statndard input/output
// in order to receive a score properly.
// Do not use file input and output. Please be very careful. 

#include <cstdio>
#include <iostream>
#include <stack>

#define M 100
#define N 100

using namespace std;

typedef struct node
{
	int matrix[N][M];   //邻接矩阵
	int n;              //顶点数
	int e;              //边数
}MGraph;

void DijkstraPath(MGraph g, int* dist, int* path, int v0)
{
	int i, j, k;
	bool *visited = new bool[sizeof(bool) * g.n];

	for (i = 0; i < g.n; i++)
	{
		if (i == v0)
		{
			path[i] = v0;
			dist[i] = 0;
			visited[i] = true;
			continue;
		}

		if (g.matrix[v0][i] > 0)
		{
			dist[i] = g.matrix[v0][i];
			path[i] = v0;
		}
		else
		{
			dist[i] = INT_MAX;
			path[i] = -1;
		}
		visited[i] = false;
	}

	for (i = 1; i < g.n; i++)
	{
		int min = INT_MAX;
		int u;
		//从V-U中选择使dist[i]值最小的顶点i,将i加入到U中
		for (j = 0; j < g.n; j++)
		{
			if (visited[j] == false && dist[j] < min)
			{
				min = dist[j];
				u = j;
			}
		}
		visited[u] = true;
		//更新与i直接相邻顶点的dist值(dist[j] = min{dist[j], dist[i] + matrix[i][j})
		for (k = 0; k < g.n; k++)
		{
			if (visited[k] == false && g.matrix[u][k] > 0 && min + g.matrix[u][k] < dist[k])
			{
				dist[k] = min + g.matrix[u][k];
				path[k] = u;
			}
		}
	}

	delete[] visited;
}

//打印最短路径上的各个顶点
void printPath(int *path, int v, int v0)    
{
	stack<int> s;
	int u = v;
	while (v != v0)
	{
		s.push(v);
		v = path[v];
	}
	s.push(v);
	while (!s.empty())
	{
		cout << s.top() << " ";
		s.pop();
	}
}

int main(int argc, char** argv)
{
	int tc, T;
	int n, e;            //表示输入的顶点数和边数
	int i, j;
	int s, t, w;         //表示存在一条边s->t,权值为w
	MGraph g;
	int v0;              //表示源顶点

	// The freopen function below opens input.txt file in read only mode, and afterward,
	// the program will read from input.txt file instead of standard(keyboard) input.
	// To test your program, you may save input data in input.txt file,
	// and use freopen function to read from the file when using cin function.
	// You may remove the comment symbols(//) in the below statement and use it.
	// Use #include<cstdio> or #include<stdio.h> to use the function in your program.
	// But before submission, you must remove the freopen function or rewrite comment symbols(//).

	freopen("input.txt", "r", stdin);

	cin >> T;
	for (tc = 0; tc < T; tc++)
	{
		/**********************************
		*  Implement your algorithm here. *
		***********************************/
		cin >> n >> e;
		int *dist = new int[sizeof(int) * n];
		int *path = new int[sizeof(int) * n];
		//初始化
		for (i = 0; i < N; i++)
			for (j = 0; j < M; j++)
				g.matrix[i][j] = 0;
		g.n = n;
		g.e = e;
		for (i = 0; i < e; i++)
		{
			cin >> s >> t >> w;
			g.matrix[s][t] = w;
		}
		cin >> v0;

		DijkstraPath(g, dist, path, v0);
		for (i = 0; i < n; i++)
		{
			if (i != v0)
			{
				printPath(path, i, v0);
				cout << dist[i] << endl;
			}
		}

		delete[] dist;
		delete[] path;
	}

	return 0;//Your program should return 0 on normal termination.
}




  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值