I was wanting something like this, so it was good to find. So how has 12 years changed things other than it still works?
Tech note D is of interest:
Creating the word signature with
pack "C*", sort unpack "C*", $_
is faster than using
join "", sort split //, $_;
With Perl 5.14.2, the join/sort/split version is actually faster now, only by a few hundredths of a second on my machine, but it is faster. This is on 917K words.
It also generates a correct signature, while the pack version generates a bad signature. Changing the last line to
foreach(sort(keys(%words))) { print "$_- $words{$_}\n"; } allows us to compare:
- pack gives: deoab- abode adobe
- split gives: abdeo- abode adobe
The pack version works because it orders letters in the same way, but it doesn't order them in alphabetical order like it's supposed to.
I'm not sure if this is a result of changes to perl as it's advanced thru time, or if it was that way originally.
I don't have a version of perl from back in 2001 to test anyway.
I found the key generation error because I actually want the key to be available and need the letters to be in alphabetical order for another program.
Thanks for sharing!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.