注册 | 登录
收藏 | 帮助
热门文章
编辑推荐
相关文章  
PS初学者实例教程——用路径画规
关于foxmail的研究2----找到帐户
数据结构中关键路径算法的实现与
Inet控件中上载的路径、文件名中
在VB中通过相对路径引用标准DLL
DELPHI中数据文件路径的管理
Java学习路径三篇
PHP中路径问题的解决方案
Freehand9.0 全程讲解8:线条和路
Fireworks中路径转选区的讨论
您现在的位置: 顶尖设计 >> IT学院 >> 编程开发 >> Delphi >> 文章正文
最短路径(校园导游)的简单算法
作者:fendysun  来源:csdn  点击:  更新:2006-12-19
简介:
map[v][k];
road[k,8]:=road[k,8]+1;
for l:=1 to road[v,8] do
road[k,l]:=road[v,l];
road[k,road[k,8]+1]:=v;

end;//if ((flag[k]=false) and(dist[v]+map[v][k]<dist[k])then
end;//for k
end;//////esle

end;//for j:=1 to 7 do  over
//for i:=1 to 7 do

//listbox1.Items.Add(floattostr(dist[i]));

end;//procedure over

procedure TForm2.FormCreate(Sender: TObject);
begin
//request:=4;
map[1,1]:=0;
map[1,2]:=2.5;
map[1,3]:=100;
map[1,4]:=8;
map[1,5]:=4;
map[1,6]:=100;
map[1,7]:=100;
//
map[2,1]:=2.5;
map[2,2]:=0;
map[2,3]:=1.5;
map[2,4]:=6;
map[2,5]:=2;
map[2,6]:=100;
map[2,7]:=100;
//
map[3,1]:=100;
map[3,2]:=1.5;
map[3,3]:=0;
map[3,4]:=5;
map[3,5]:=100;
map[3,6]:=100;
map[3,7]:=100;
//
map[4,1]:=8;
map[4,2]:=8;
map[4,3]:=5;
map[4,4]:=0;
map[4,5]:=4.2;
map[4,6]:=100;
map[4,7]:=100;
//
map[5,1]:=4;
map[5,2]:=2;
map[5,3]:=100;
map[5,4]:=4.2;
map[5,5]:=0;
map[5,6]:=1.5;
map[5,7]:=2;
//
map[6,1]:=100;
map[6,2]:=100;
map[6,3]:=100;
map[6,4]:=100;
map[6,5]:=1.5;
map[6,6]:=0;
map[6,7]:=1;
//
map[7,1]:=100;
map[7,2]:=100;
map[7,3]:=100;
map[7,4]:=100;
map[7,5]:=2;
map[7,6]:=1;
map[7,7]:=0;
end;


procedure TForm2.bsSkinButton2Click(Sender: TObject);
//var
//i:integer;
begin

form5.Show;
end;


procedure TForm2.bsSkinButton1Click(Sender: TObject);
begin
form3.l1.Caption:=floattostr(dist[1])+'m   ';
form3.l2.Caption:=floattostr(dist[2])+'m   ';
form3.l3.Caption:=floattostr(dist[3])+'m   ';

form3.l5.Caption:=floattostr(dist[4])+'m   ';
form3.l6.Caption:=floattostr(dist[5])+'m   ';
form3.l7.Caption:=floattostr(dist[6])+'m   ';
form3.l8.Caption:=floattostr(dist[7])+'m   ';
form3.Show;
end;

end.


unit Unit3;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, bsSkinData, BusinessSkinForm, StdCtrls, bsSkinCtrls, jpeg,
  ExtCtrls;

type
  TForm3 = class(TForm)
    bsBusinessSkinForm1: TbsBusinessSkinForm;
    bsSkinData1: TbsSkinData;
    bsCompressedStoredSkin1: TbsCompressedStoredSkin;
    bsSkinStdLabel1: TbsSkinStdLabel;
    bsSkinStdLabel2: TbsSkinStdLabel;
    bsSkinStdLabel3: TbsSkinStdLabel;
    bsSkinStdLabel4: TbsSkinStdLabel;
    bsSkinStdLabel5: TbsSkinStdLabel;
    bsSkinStdLabel6: TbsSkinStdLabel;
    bsSkinStdLabel7: TbsSkinStdLabel;
    bsSkinStdLabel8: TbsSkinStdLabel;
    damen: TImage;
    lanqiou: TImage;
    ydc: TImage;
    jxl: TImage;
    gongyu: TImage;
    st: TImage;
    xyf: TImage;
    l1: TbsSkinStdLabel;
    l2: TbsSkinStdLabel;
    l3: TbsSkinStdLabel;
    l5: TbsSkinStdLabel;
    l6: TbsSkinStdLabel;
    l7: TbsSkinStdLabel;
    l8: TbsSkinStdLabel;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form3: TForm3;

implementation

{$R *.dfm}

end.
unit Unit5;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, bsSkinData, BusinessSkinForm, StdCtrls, bsSkinCtrls, CheckLst;

type
  TForm5 = class(TForm)
    bsSkinStdLabel1: TbsSkinStdLabel;
    bsBusinessSkinForm1: TbsBusinessSkinForm;
    bsSkinData1: TbsSkinData;
    bsCompressedStoredSkin1: TbsCompressedStoredSkin;
    rg: TbsSkinRadioGroup;
    word: TbsSkinLabel;
    lab: TCheckListBox;
    procedure rgChecked(Sender: TObject);
    procedure rgClick(Sender: TObject);
    procedure FormCreate(Sender: TObject);
    procedure FormShow(Sender: TObject);
  private
    { Private declarations }
  public
  request2:integer;
    { Public declarations }
  end;
mapinfo=array[1..7,1..7]of real;
roadinfo=array[1..7,1..8]of integer;
flagarray=array[1..7]of bool;
distinfo=array[1..7]of real;

var
Form5: TForm5;
request:integer;
map:mapinfo;
road:roadinfo;
flag:flagarray;
dist:distinfo;
implementation

uses Unit2;

{$R *.dfm}

procedure TForm5.rgChecked(Sender: TObject);
var
m,n:integer;
v,i,j,w,k,l:integer;
min: real;
begin
for m:=0 to rg.ComponentCount-1 do
if (rg.Controls[m]as tbsSkinCheckRadioBox).Checked then
n:=m;

//form3.Show;

form5.lab.Items.clear;

for i:=1 to road[n+1,8] do
begin
//大门运动场 教学大楼 公寓 洗浴中心
case road[n+1,i] of
1:form5.lab.Items.Add('南校区大门 ') ;
2:form5.lab.Items.Add('篮球场 ') ;
3:form5.lab.Items.Add('运动场 ') ;
4:form5.lab.Items.Add('教学大楼   ') ;
5:form5.lab.Items.Add('公寓 ') ;
6:form5.lab.Items.Add('食堂 ') ;
7:form5.lab.Items.Add('洗浴中心 ') ;
end;


end;//for i

//listbox1.Items.Add(floattostr(dist[i]));

end;//procedure over

procedure TForm5.rgClick(Sender: TObject);
var
m,n:integer;
v,i,j,w,k,l:integer;
min: real;
begin
for m:=0 to rg.ComponentCount-1 do
if (rg.Controls[m]as tbsSkinCheckRadioBox).Checked then
begin
n:=m;
//form5.Caption:=inttostr(n);


end;
//form3.Show;

form5.lab.Items.clear;

for i:=1 to 7 do
begin
//师大南校区大门安师大南校区大门运动场 教学大楼 公寓 洗浴中心
case road[n+1,i] of
1:form5.lab.Items.Add('师大南校区大门 ') ;
2:form5.lab.Items.Add('篮球场 ') ;
3:form5.lab.Items.Add('运动场 ') ;
4:form5.lab.Items.Add('教学大楼   ') ;
5:form5.lab.Items.Add('公寓 ') ;
6:form5.lab.Items.Add('食堂 ') ;
7:form5.lab.Items.Add('洗浴中心 ') ;
end;

end;//for i
//lab.Items.IndexOf()
case n+1 of
1:
begin
if lab.Items.IndexOf('师大南校区大门 ')=-1 then
form5.lab.Items.Add('安师大南校区大门 ') ;
end;
2:
begin
if lab.Items.IndexOf('篮球场 ')=-1 then
form5.lab.Items.Add('篮球场 ') ;
end;
3:
begin
if lab.Items.IndexOf('运动场 ')=-1 then

form5.lab.Items.Add('运动场 ') ;
end;
4:
begin
if lab.Items.IndexOf('教学大楼   ')=-1 then
form5.lab.Items.Add('教学大楼   ') ;
end;
5:
begin
if lab.Items.IndexOf('公寓 ')=-1 then
form5.lab.Items.Add('公寓 ') ;
end;
6:
begin
if lab.Items.IndexOf('食堂 ')=-1 then
form5.lab.Items.Add('食堂 ') ;
end;
7:
begin
if lab.Items.IndexOf('洗浴中心 ')=-1 then
form5.lab.Items.Add('洗浴中心 ') ;
end;
end;


//listbox1.Items.Add(floattostr(dist[i]));

end;//procedure over


procedure TForm5.FormCreate(Sender: TObject);
begin
//request:=form2.request;

map[1,1]:=0;
map[1,2]:=2.5;
map[1,3]:=100;
map[1,4]:=8;
map[1,5]:=4;
map[1,6]:=100;
map[1,7]:=100;
//
map[2,1]:=2.5;
map[2,2]:=0;
map[2,3]:=1.5;
map[2,4]:=6;
map[2,5]:=2;
map[2,6]:=100;
map[2,7]:=100;
//
map[3,1]:=100;
map[3,2]:=1.5;
map[3,3]:=0;
map[3,4]:=5;
map[3,5]:=100;
map[3,6]:=100;
map[3,7]:=100;
//
map[4,1]:=8;
map[4,2]:=8;
map[4,3]:=5;
map[4,4]:=0;
map[4,5]:=4.2;
map[4,6]:=100;
map[4,7]:=100;
//
map[5,1]:=4;
map[5,2]:=2;
map[5,3]:=100;
map[5,4]:=4.2;
map[5,5]:=0;
map[5,6]:=1.5;
map[5,7]:=2;
//
map[6,1]:=100;
map[6,2]:=100;
map[6,3]:=100;
map[6,4]:=100;
map[6,5]:=1.5;
map[6,6]:=0;
map[6,7]:=1;
//
map[7,1]:=100;
map[7,2]:=100;
map[7,3]:=100;
map[7,4]:=100;
map[7,5]:=2;
map[7,6]:=1;
map[7,7]:=0;
end;

procedure TForm5.FormShow(Sender: TObject);
var
m,n:integer;
v,i,j,w,k,l:integer;
min: real;
begin


//form3.Show;
min:=100;
for i:=1 to 7 do
begin
flag[i]:=false;
if map[request2,i]<100 then
begin
road[i,8]:=1;
road[i,1]:=i;
dist[i]:=map[request2,i];
end//if
else
begin
road[i,8]:=0;
dist[i]:=100;
end;//else
end;//for i
flag[request2]:=true;
for j:=1 to 7 do
begin
for w:=1 to 7 do
begin
if ((flag[w]=false) and (dist[w]<min)) then
begin
min:=dist[w];
v:=w;
end;//if dist[w]<min
end;//for w
min:=100;
if dist[v]=100 then
showmessage('dist[v]=100!!')
else
begin//////
flag[v]:=true;
for k:=1 to 7 do
begin
if ((flag[k]=false) and(dist[v]+map[v][k]<dist[k]))then
begin
dist[k]:=dist[v]+map[v][k];
road[k,8]:=road[k,8]+1;
for l:=1 to road[v,8] do
road[k,l]:=road[v,l];
road[k,road[k,8]+1]:=w;

end;//if ((flag[k]=false) and(dist[v]+map[v][k]<dist[k])then
end;//for k
end;//////esle

end;//for j:=1 to 7 do  over
end;
end

上一页  [1] [2] 






  • 上一篇文章:
  • 下一篇文章:
  • 分享此文:该页面添加到 Mister Wong 添加到雅虎Yahoo!收藏 Add to:Del.icio.us Post to Furl Digg this 添加到Google书签 reddit spurl blogmarks 365Key 评论  收藏  分享  打印
     我来说两句
    姓名:       验证码:   
    主页: 
    评分: 1分 2分 3分 4分 5分
    本频道近期热评文章:
      关于我们 | 联系我们 | 站点地图 | 广告投放 | 友情链接 | 在线留言 | 版权申明
    版权所有 © 2004-2007 顶尖设计(bobd.cn)
    未经授权禁止转载,摘编,复制本站内容或建立镜像. 沪ICP备07504942号 
    网络110
    报警服务