program Search; uses Crt; var Target,Max,LastTry,LBO,Try,Step,MaxSteps,MaxSTarget: longint; oldx,oldy: integer; oldestx,oldesty: integer; Steps:array[1..31] of longint; Time: integer; procedure CursorOff;assembler; asm xor ax,ax mov ah,01h mov ch,20h mov cl,20h int 10h end; procedure CursorOn;assembler; asm mov ah,01h mov cx,0607h int 10h end; procedure AskForData; begin WriteLn(' Search-Prog '); WriteLn; Write('Geben Sie den Zahlenbereich an (0 fr 2147483647): 0-'); ReadLn(Max); if Max=0 then begin Max:=2147483647; GotoXY(54,3); Write(Max); GotoXY(1,4); end; Write('Geben Sie die Zahl ein, die ich suchen soll: '); ReadLn(Target); WriteLn; WriteLn('Dateneingabe komplett.'); Delay(500); ClrScr; end; procedure GetRandomData; begin Max:=2147483647; Target:=Round(Random*1E3+Random*1E6+Random*1E9); end; procedure GetAll; begin Max:=2147483637; Inc(Target); end; function Half(v1,v2: longint):longint; begin if v1>v2 then Half:=Round((v1-v2)/2); if v124 then begin co:=co+40; li:=1; end; LBO:=LastTry; LastTry:=Try; if TryTarget then Write(Try:10,' ',Chr(16),' 0'); if Try=Target then begin if ((oldestx<>0) AND (oldesty<>0)) then begin GotoXY(oldestx,oldesty); TextColor(8); Write(Chr(16)); end; oldestx:=oldx; oldesty:=oldy; if ((oldx<>0) AND (oldy<>0)) then begin GotoXY(oldx,oldy); TextColor(4); Write(Chr(16)); end; oldx:=co-1; oldy:=li; GotoXY(co-1,li); TextColor(12); Write(Chr(16),Try:10,' ',Chr(29),' '); Inc(Steps[step]); end; if Try<>Target then goto TryAgain; { Delay(2000); } Inc(Time); if Time>1000 then begin Time := 0; CalcPerc; end; { CursorOn; } end; begin Time := 0; TextBackground(0); CursorOff; ClrScr; Randomize; { AskForData; } MakeList; while not keypressed do begin Step:=0; GetRandomData; { GetAll; } Calculate; if Step>MaxSteps then begin MaxSteps:=Step; MaxSTarget:=Target; end; end; ReadKey; end.