in reply to Re: Tedious array sort revisited
in thread Tedious array sort revisited
Thanks for anymore help I can get. I stress that I am brand new to perl (so I'm really not sure if I'm using the @# operator correctly). This is supposed to work on single character strings and sort them.for (i = 0, i =< @#entries, i++) { $indexofleast = i; for (j = 1, j =< @#entries, j++) { if (@entries[j] lt @entries[i]) { $indexofleast = j; } if ($indexofleast != i) { $temp = @array[j]; $@array[j] = $@array[i]; $@array[i] = $temp; } } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Tedious array sort revisited
by zakb (Pilgrim) on Feb 06, 2003 at 11:08 UTC |