Help for this page

Select Code to Download


  1. or download this
    sub shuffle
    {
        my $array_ref = shift;
    ...
            @$array_ref[ $i, $r ] = @$array_ref[ $r, $i ];
        }
    }
    
  2. or download this
    sub recursive_shuffle
    {
        my $array_ref = shift;
    ...
        }
        shuffle( $sub_array );
    }