정말 왕초보인데요...
델파이로 bubble sort를 책을 따라서
유닛파일에다가 한번
코디을 해봤는데 그 이후로는 어찌해야할지
몰겠네요...
제발 좀 갈쳐주세요....이책 저책 다뒤져도 파스칼 언어라는걸
첨해서....도저히 잘몰겠네요...잉....
========소스.....====================================
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
type
TForm1 = class(TForm)
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure bubblesort (n : integer)
var
r : records;
i,k : integer;
flag : boolean;
begin
flag := true
k := n
while flag do
begin flag := false;
for i := to k-1 do
begin
if list[i].key > list[i+1].key then
begin
r := list[i]
list[i] := list[i+1];
list[i+1] := r;
flag := true
end;
end;
end;
end.
이거 비베처럼 이벤트를 주고 출력도 어디에 출력하는지
지정이 안된것 같은데...
하지만 도저히 어찌하지를 못하겠어요...
please~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`
델파이 설치된 곳에 보시면 소트에 관한 예제가 있습니다..
C:Program FilesBorlandDelphi4DemosThreads
한번 참고해 보시면..
행복하세요..
레오..^^ wrote:
> 정말 왕초보인데요...
> 델파이로 bubble sort를 책을 따라서
> 유닛파일에다가 한번
> 코디을 해봤는데 그 이후로는 어찌해야할지
> 몰겠네요...
> 제발 좀 갈쳐주세요....이책 저책 다뒤져도 파스칼 언어라는걸
> 첨해서....도저히 잘몰겠네요...잉....
>
> ========소스.....====================================
> unit Unit1;
>
> interface
>
> uses
> Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
>
> type
> TForm1 = class(TForm)
> private
> { Private declarations }
> public
> { Public declarations }
> end;
>
> var
> Form1: TForm1;
>
> implementation
>
> {$R *.DFM}
> procedure bubblesort (n : integer)
> var
> r : records;
> i,k : integer;
> flag : boolean;
> begin
> flag := true
> k := n
> while flag do
> begin flag := false;
> for i := to k-1 do
> begin
> if list[i].key > list[i+1].key then
> begin
> r := list[i]
> list[i] := list[i+1];
> list[i+1] := r;
> flag := true
> end;
> end;
> end;
>
>
> end.
>
> 이거 비베처럼 이벤트를 주고 출력도 어디에 출력하는지
> 지정이 안된것 같은데...
> 하지만 도저히 어찌하지를 못하겠어요...
> please~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`
>