Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re (tilly) 1: Power of two round up.

by tilly (Archbishop)
on Dec 15, 2000 at 23:15 UTC ( [id://46894]=note: print w/replies, xml ) Need Help??


in reply to Power of two round up.

TIMTOWTDI
sub binround { my $out = 1; my $in = shift; while ($in) { $in >>= 1; $out += $out; } $out; }

Replies are listed 'Best First'.
Re: Re (tilly) 1: Power of two round up.
by japhy (Canon) on Dec 15, 2000 at 23:31 UTC
    And an even faster WTDI:
    sub next_pwr { my ($x,$p) = (@_,2); # default to next_pwr(X,2) my $log = log($x)/log($p); $log = int($log+1) if $log != int($log); return $p**$log; }
    You can even add a log() memoization in there:
    { my %LOG = (2 => log(2)); # most common sub next_pwr { my ($x,$p) = (@_,2); # default to next_pwr(X,2) # assertions, etc. die "illegal base: $p" if $p < 2; return 1 if $x == 1; $p = int $p; my $log = ($LOG{$x} ||= log($x)) / ($LOG{$p} ||= log($p)); $log = int($log+1) if $log != int($log); return $p ** $log; } }


    japhy -- Perl and Regex Hacker

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://46894]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-04-25 21:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found