I could not resist, so I wrote a version which not only finds the anagrams, but also keeps track of all the chains of words found. It might be similar to something else here, but I didn't peek, honest (except for starting with the idea of starting with the longest words and removing letters):
#!/usr/bin/perl use strict; use warnings; use Data::Dumper; my @word; while(<>) { chomp; my $key = join '', sort split ''; push @{$word[length]{$key}}, $_; } my @ana; for my $i (reverse 3..$#word) { my $got_it; for my $key (keys %{$word[$i]}) { if (my @chain = find_chain($key)) { push @ana, @chain; $got_it = 1; } } last if $got_it; } for my $chain (@ana) { for my $key (@$chain) { my $len = length $key; print "[ @{$word[$len]{$key}} ]\n"; } print "\n"; } sub find_chain { my $key = shift; my $len = length($key)-1; return [ $key ] if $len < 3; my @rtn; my $old_chr = ''; for my $i (0..$len) { my $tmp = $key; next if (my $chr = substr($tmp, $i, 1, '')) eq $old_chr; $old_chr = $chr; next unless exists $word[$len]{$tmp}; if (my @chain = find_chain($tmp)) { unshift @$_, $key for @chain; push @rtn, @chain; } } delete $word[$len]{$key} unless @rtn; @rtn; }

In reply to Re: Add-A-Gram Performance by runrig
in thread Add-A-Gram Performance by smgfc

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.