externel merge sort of numbers

2002-02-26 Thread sanilkumar
help me I want the code of external merge sort using perl enybody help me -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

to know about new computer h\w

2002-02-05 Thread sanilkumar
i want to present a seminar on new computer hardwares next week. i want to know the technical details of various newly developed computers.please send me text only if possible. thanking you, -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

regular expression to nfa

2002-02-04 Thread sanilkumar
how to convert regular expression to nfa nfa to dfa using perl/c/c++ please help me -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

quick sort --help me

2002-02-01 Thread sanilkumar
this program is not working please help me for(my $i=0;$i<3;$i++) { my $r=$i+1; print("Enter the $r number"); local$a[$i]=; } $first=0; $last=2; quicksort(\@a,$first,$last); system(clear); print("\t@a"); sub quicksort(\@$$) { my($num,$fi,$la)=@_; print("

quick sort error

2002-02-01 Thread sanilkumar
This program is not working enyone hep me to complete this print "Enter the num: of num: "; my $co=; for(my $i=0;$i<$co;$i++) { my $r=$i+1; print("Enter the $r number"); local$a[$i]=; } $first=0; $last=$co; quicksort(\@a,$first,$last); system(clear); print("\t@a"); sub

quicksort

2002-01-24 Thread sanilkumar
i write a code for quicksort in perl this is not working help me doing this > for($i=0;$i<10;$i++) > { > print("Enetr the $i num: "); > $a[$i]=; > print("@a[$i]"); > } > print("@a"); > > $first=0; > $last=10; > quicksort(@a,$first,$last); > print("@a"); >

RE: extracting links from HTML data (7my own problem usiing grep

2002-01-17 Thread sanilkumar
Friends, I am Sanil.I am a computer Science student.I want to study expect programming and python Qt. If anybody of you know this or sites for the corresponding tutorial please please mail to me. from

sorting in perl - help me

2002-01-11 Thread sanilkumar
Enyone can help me: how to do Quicksort , selection sort ,mergesort and external merge sort in perl that programes are exactly the same way that programes in C/C++ -- #