动态规划——3 floyd算法

/**
 * Floyd算法<br/>
 * 计算完全最短路径<br/>
 * k >= 0, Dij(0) = Wij, Dij(k) = min{Dij(k-1), Dik(k-1) +Dkj(k-1)} <br/>
 * 
 * O(n^3)
 * @author chenxuegui
 * 
 */
public class Floyd
{
	static final int max = 10000;

	public static void main(String[] args)
	{

		int[][] n = new int[][] { { 0, max, 3, max }, { 2, 0, max, max },
				{ max, 7, 0, 1 }, { 6, max, max, 0 } };

		warshall(n);

	}

	/**
	 * 
	 * @param n
	 */
	public static void warshall(int[][] n)
	{
		for (int k = 0; k < n.length; k++)
		{

			print(n);
			for (int i = 0; i < n.length; i++)
			{

				for (int j = 0; j < n.length; j++)
				{
					n[i][j] = Math.min(n[i][j], n[i][k] + n[k][j]);

				}
			}
		}

		print(n);
	} 

	public static void print(int[][] n)
	{
		for (int i = 0; i < n.length; i++)
		{
			for (int j = 0; j < n.length; j++)
			{
				if (n[i][j] >= 10000)
				{
					System.out.print("max ");
				}
				else
				{
					System.out.print(n[i][j] + " ");
				}
			}

			System.out.println();
		}

		System.out.println();
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值