Thread Rechenproblem (8 answers)
Opened by bianca at 2011-05-15 16:08

Taulmarill
 2011-05-16 10:37
#148668 #148668
User since
2004-02-19
1750 Artikel
BenutzerIn

user image
Müssen denn alle Elemente durchlaufen werden? Es wäre wohl einfacher, nur die Positionen der Elemente zu berechnen. Vielleicht wird es in meinem Beispiel deutlicher:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
my $anzahl = $ARGV[0] || 19;
my $max    = $ARGV[1] || 10;

my $step   = ($anzahl-1) / ($max-1);
my $pos    = 1;

if ( $anzahl <= $max ) { print "$_\n" for 1 .. $max; exit }

for ( 1 .. $max ) {
    my $pick = int $pos;
    print "$pick\n";
    $pos += $step;
}
$_=unpack"B*",~pack"H*",$_ and y&1|0& |#&&print"$_\n"for@.=qw BFA2F7C39139F45F78
0A28104594444504400 0A2F107D54447DE7800 0A2110453444450500 73CF1045138445F4800 0
F3EF2044E3D17DE 8A08A0451412411 F3CF207DF41C79E 820A20451412414 83E93C4513D17D2B

View full thread Rechenproblem