in reply to Re: Finding Combinations of Pairs
in thread Finding Combinations of Pairs

Thanks for the reply. I didn't consider combining the pairs into a single value. Next time I will. Thanks.

Replies are listed 'Best First'.
Re^3: Finding Combinations of Pairs
by andye (Curate) on Jan 14, 2009 at 23:14 UTC
    BTW - and being serious now - you don't actually need to combine them into a single value.

    If you do something like:

    $h->{$word1}->{$word2}++
    instead of
    $h->{"$word1 $word2"}++
    in the centre of the loops, then you end up with a useful tree-like structure, which gives you a quick index of, for each word, how many times each other word appears in combination with it.

    Try it and use Data::Dumper to print the output, and you'll see what I mean.

    Although I appreciate that may not be what the homework called for. <grin>

    Best wishes, andy.