Power of 2
-
Hi All, Is there a fast way of checking to see if an
int
is a power of 2 (i.e. 2, 4, 8, 16, 1024)? I know the long way using a loop, but I was hoping for a simple way of doing this. regards, Rich "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far the Universe is winning." -- Rich Cook -
Hi All, Is there a fast way of checking to see if an
int
is a power of 2 (i.e. 2, 4, 8, 16, 1024)? I know the long way using a loop, but I was hoping for a simple way of doing this. regards, Rich "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far the Universe is winning." -- Rich Cook -
Hi All, Is there a fast way of checking to see if an
int
is a power of 2 (i.e. 2, 4, 8, 16, 1024)? I know the long way using a loop, but I was hoping for a simple way of doing this. regards, Rich "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far the Universe is winning." -- Rich Cookif a number is a power of 2 than looking at the bits that composed that value must be all '0' but only one '1'. So, if
int
is a 32 bit value, you can look for 31 '0' and 1 '1'. But you need olso a loop! But it is quite fast. Let me know if here is a faster bit function to count the ones/zeros ByeHave a nice code day ;)
-
if a number is a power of 2 than looking at the bits that composed that value must be all '0' but only one '1'. So, if
int
is a 32 bit value, you can look for 31 '0' and 1 '1'. But you need olso a loop! But it is quite fast. Let me know if here is a faster bit function to count the ones/zeros ByeHave a nice code day ;)
Yip, this was my way to begin with. regards, Rich "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far the Universe is winning." -- Rich Cook
-
I think you will have problems when comparinf the floats, due to the precision.
-
Hi All, Is there a fast way of checking to see if an
int
is a power of 2 (i.e. 2, 4, 8, 16, 1024)? I know the long way using a loop, but I was hoping for a simple way of doing this. regards, Rich "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far the Universe is winning." -- Rich CookHello RichardS, Try this one.
double val = 0.0; val = log10(y) / log10(2.0); //Check that 'val' is pure int (Here you use ur own code is u optimize) int val2 = int(val); if (val == val2) // y is power of 2 else // y is not power of 2
here 'y' is value u want to check for power of 2. Best of luck
Divyang Mithaiwala System Engineer & Software Developer
-
2^3 = 8 but floor(sqrt(8)) != sqrt(8)? Steve
-
I think you will have problems when comparinf the floats, due to the precision.
-
Hello RichardS, Try this one.
double val = 0.0; val = log10(y) / log10(2.0); //Check that 'val' is pure int (Here you use ur own code is u optimize) int val2 = int(val); if (val == val2) // y is power of 2 else // y is not power of 2
here 'y' is value u want to check for power of 2. Best of luck
Divyang Mithaiwala System Engineer & Software Developer
-
Hi All, Is there a fast way of checking to see if an
int
is a power of 2 (i.e. 2, 4, 8, 16, 1024)? I know the long way using a loop, but I was hoping for a simple way of doing this. regards, Rich "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far the Universe is winning." -- Rich CookHi, you could use ::log to check if its a power of 2 math: y = 2^x -> x = log(y)/log(2) so you can use:
int y = 1024; if(y == (int)(::pow(2.0, ::floor(::log((double)y)/::log(2.0))))) { // true } else { // false }
but his is heavy processing, so it mith be slower that the for loop codito ergo sum
-
Hello RichardS, Try this one.
double val = 0.0; val = log10(y) / log10(2.0); //Check that 'val' is pure int (Here you use ur own code is u optimize) int val2 = int(val); if (val == val2) // y is power of 2 else // y is not power of 2
here 'y' is value u want to check for power of 2. Best of luck
Divyang Mithaiwala System Engineer & Software Developer
Here logic is simple y = value that want to check x = find a value that is in power of 2 so,
2^x = y
log 2^x = log y
x log 2 = log yx = log y /log 2
Divyang Mithaiwala System Engineer & Software Developer
-
Hi All, Is there a fast way of checking to see if an
int
is a power of 2 (i.e. 2, 4, 8, 16, 1024)? I know the long way using a loop, but I was hoping for a simple way of doing this. regards, Rich "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far the Universe is winning." -- Rich CookDefine "fast". If you're using 32-bit int's, there are only 32 possibilities so you can just check entries in a lookup table, making sure you do the most likely candidates first. BTW, all these suggestions to use sqrt() and log() are nuts - these functions are insanely slow!
The two most common elements in the universe are Hydrogen and stupidity. - Harlan Ellison Awasu 2.2 [^]: A free RSS/Atom feed reader with support for Code Project.
-
Hi All, Is there a fast way of checking to see if an
int
is a power of 2 (i.e. 2, 4, 8, 16, 1024)? I know the long way using a loop, but I was hoping for a simple way of doing this. regards, Rich "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far the Universe is winning." -- Rich CookCrikey. I thought this was well known. Just do this:
if (x & (x-1))
{
// x is <edit>not</edit>a power of two
}
else
{
// x is <edit>not</edit> a power of two
}sorry, got the two cases round the wrong way... :-O
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"
-- modified at 6:04 Monday 6th March, 2006
-
Yip, this was my way to begin with. regards, Rich "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far the Universe is winning." -- Rich Cook
Read this function, it could be another start point! This function that I wrote last year find the bigger long, greater than the input value, that is a power of 2. And it is quite fast!:)
unsigned long Next2Power(unsigned long x){ unsigned long y=1, x1=x; if(x==0) return 0; while(x1!=0){ x1>>=1; y<<=1; } y>>=1; if(y!=x) y<<=1; return y; }
Have a nice code day ;)
-
Crikey. I thought this was well known. Just do this:
if (x & (x-1))
{
// x is <edit>not</edit>a power of two
}
else
{
// x is <edit>not</edit> a power of two
}sorry, got the two cases round the wrong way... :-O
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"
-- modified at 6:04 Monday 6th March, 2006
This is by far the best suggestion so far - I'd wager it's impossible to beat this technique. Steve
-
Define "fast". If you're using 32-bit int's, there are only 32 possibilities so you can just check entries in a lookup table, making sure you do the most likely candidates first. BTW, all these suggestions to use sqrt() and log() are nuts - these functions are insanely slow!
The two most common elements in the universe are Hydrogen and stupidity. - Harlan Ellison Awasu 2.2 [^]: A free RSS/Atom feed reader with support for Code Project.
Taka Muraoka wrote:
BTW, all these suggestions to use sqrt() and log() are nuts - these functions are insanely slow!
Agreed!! It is quite simple. A single decrement and bitwise AND will do the job nicely
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"
-
Crikey. I thought this was well known. Just do this:
if (x & (x-1))
{
// x is <edit>not</edit>a power of two
}
else
{
// x is <edit>not</edit> a power of two
}sorry, got the two cases round the wrong way... :-O
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"
-- modified at 6:04 Monday 6th March, 2006
Great work! You've implemented Russel's idea!
Nibu thomas Software Developer
-
This is by far the best suggestion so far - I'd wager it's impossible to beat this technique. Steve
And yet it got the lowest votes of all of them. Funny, isn't it :)
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"
-
Great work! You've implemented Russel's idea!
Nibu thomas Software Developer
Actually, I've been using this for years doing embedded programming. Every clock cycle is precious ;)
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"