Search Results

Showing results 1 to 8 of 8
Search took 0.01 seconds.
Search: Posts Made By: Jx_Man ; Forum: Pascal and Delphi and child forums
Forum: Pascal and Delphi Mar 11th, 2008
Replies: 5
Solved: QuickSort
Views: 3,810
Posted By Jx_Man
try this following code :
{********************************************
* This Procedure to Sort element vektor *
* Procedure ATUR to organize an element position *
...
Forum: Pascal and Delphi Mar 7th, 2008
Replies: 5
Views: 1,852
Posted By Jx_Man
you're welcome friend :)
Forum: Pascal and Delphi Mar 7th, 2008
Replies: 4
Solved: pop ??
Views: 852
Posted By Jx_Man
i was modified your code and add a some code :
i use your initial code...
function POP (var T : Tumpukan) : integer;

{*this function to check stack is empty or not*}
function Empty(var T :...
Forum: Pascal and Delphi Mar 7th, 2008
Replies: 5
Views: 1,852
Posted By Jx_Man
try this following code :
program Reverse_String;

uses crt;

const Elemen = 255; {* Max character *}

type S255 = string[Elemen];
Stack = record
Input :...
Forum: Pascal and Delphi Mar 6th, 2008
Replies: 4
Solved: Fibonaci
Views: 2,231
Posted By Jx_Man
see this code :
function FIBO(N : integer) : integer;

begin
if (N = 1) or (N = 2) then
FIBO := 1
else
FIBO(N) := FIBO(N - 1) + FIBO(N - 2)
end;
hope this helps...
Forum: Pascal and Delphi Mar 5th, 2008
Replies: 3
Solved: Push Procedure
Views: 1,337
Posted By Jx_Man
i think you forget to set full = false, just it.
add this code after else :
begin
Full := false;
T.Top := inc(T.Top);
T.Contain[T.Top] := X
end
ok hope this...
Forum: Pascal and Delphi Mar 5th, 2008
Replies: 6
Solved: Make Array
Views: 1,294
Posted By Jx_Man
see this example :
i write this code in pascal

5318

hope this helps..
Forum: Pascal and Delphi Mar 5th, 2008
Replies: 6
Solved: Make Array
Views: 1,294
Posted By Jx_Man
see this example :
i write this code in pascal

5318

hope this helps..
Showing results 1 to 8 of 8

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC