Реферат: Графовые модели. Остов минимального веса
moveto(vx[i]+7,vy[i]+7);
lineto(vx[j]+7,vy[j]+7);
brush.color:= clwhite;
textout(round((vx[i]+vx[j]+4)/2),round((vy[i]+vy[j]+1)/2),inttostr(ar[i,j]));
end;
brush.color:= cllime;
for i:= 1 to n do
begin
font.Size:=1;
rectangle(vx[i],vy[i],vx[i]+15,vy[i]+15);
textout(vx[i]+4,vy[i]+1,inttostr(i));
end; end; end;
procedure TForm1.SpeedButton7Click(Sender: TObject);
var
i:integer;
begin
for i:= 1 to n do
begin
sg.ColCount:=n+1;
sg.Rowcount:=n+1;
sr.ColCount:=n+1;
sr.Rowcount:=n+1;
sg.Cells[0,i]:=inttostr(i);
sr.Cells[0,i]:=inttostr(i);
sg.Cells[i,0]:=inttostr(i);
sr.Cells[i,0]:=inttostr(i); end;
for i:= 1 to n do
for j:= 1 to n do
begin