Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Sorting a text file

by jonadab (Parson)
on Mar 15, 2007 at 10:48 UTC ( [id://604959]=note: print w/replies, xml ) Need Help??


in reply to Sorting a text file

If you want to play amusing games with this problem, you could implement a crude Radix Sort:

require v5.8.0; open INPUT, '<', '/path/to/the/file/where/the/data/are.stored'; my @line = <INPUT>; close INPUT; for (reverse 8..13) { @line = sort {substr($a,$_,1) <=> substr($b,$_,1)} @line; } print @line;
-- 
We're working on a six-year set of freely redistributable Vacation Bible School materials.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://604959]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-26 09:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found