Make every item in a list point to another item in a list, without pointing at itself. The middle part is needed for the special case where everyone has a "partner" except for the last person. In other words, in the list 1-2-3, if 1 points to 2 and 2 points to 1, then nobody can point to 3 so some swapping must be done. Inspired by the Kris Kringle node.
use strict; my @one = (1..10); ## Sample set my %point; my ($x,$y); my $total=0; for $x (@one) { $total++; { ## Pick any list element but $x: redo while ($y = $one[rand @one]) eq $x; ## Special case: nobody left to point to if ($total==@one && !$point{$x}) { $total = $point{$y}; ## Recycling $total $point{$y}=$x; $point{$x}=$total; last; } redo if $point{$y}; $point{$y}=$x; } } print "$x => $point{$x}\n" while $x=$one[$x++];

In reply to Swap-a-roo by turnstep

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.