资源简介

Floyd弗洛伊德算法matlab仿真代码。跑过几遍,代码是可以运行的,下载后可以直接在matlab打开运行。

资源截图

代码片段和文件信息

% DisplayPath.m 打印路径函数
function DisplayPath(route start dest)
  % 打印出任意两点之间的最短路径 
  % route : 路由表 
  % start : 起点index
  % dest : 终点index
  
  i = 1;
  
  while 1
    if(route(start dest) ~= dest)
      fprintf(‘V%s -> ‘ num2str(start));
      start = route(start dest);
    else
      fprintf(‘V%s -> ‘ num2str(start));
      fprintf(‘V%s\n‘ num2str(dest));
      break;
    end
  end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        439  2019-02-26 10:38  Floyd算法MATLAB仿真\DisplayPath.m

     文件        475  2019-02-26 10:38  Floyd算法MATLAB仿真\Floyd.m

     文件        531  2019-02-26 10:38  Floyd算法MATLAB仿真\myfloyd.m

     目录          0  2019-02-26 10:38  Floyd算法MATLAB仿真

----------- ---------  ---------- -----  ----

                 1445                    4


评论

共有 条评论