Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Say I have a floating point number. I would like to extract the positions of all the ones digits in the number's base 2 representation.

For example, 10.25 = 2^-2 + 2^1 + 2^3, so its base-2 ones positions are {-2, 1, 3}.

Once I have the list of base-2 powers of a number n, the following should always return true (in pseudocode).

sum = 0
for power in powers:
    sum += 2.0 ** power
return n == sum

However, it is somewhat difficult to perform bit logic on floats in C and C++, and even more difficult to be portable.

How would one implement this in either of the languages with a small number of CPU instructions?

share|improve this question
5  
It's kinda impossible for this to be portable since the standard doesn't guarantee IEEE floating-point. Also, what if the "ones" digit is out of range? – Mysticial Aug 3 '12 at 21:40
I don't mind non-portability actually, as long as it works on, say Linux x86_64 with gcc and guaranteed IEEE float. Any other architectures can use tweaked code or a slow naive method. – Vortico Aug 3 '12 at 21:43
What is the point of avoiding low level, bit-wise operations? – Nino Aug 3 '12 at 21:43
2  
The only logical solution is to use a union to convert the float into an integer. Then extract out the exponent and apply the offset. If it's negative or > 23/52 then it's out of range. – Mysticial Aug 3 '12 at 21:46
1  
No, you can use frexp and then it becomes completely portable. – R.. Aug 4 '12 at 4:31
show 2 more comments

2 Answers

up vote 4 down vote accepted

Give up on portability, assume IEEE float and 32-bit int.

// Doesn't check for NaN or denormalized.
// Left as an exercise for the reader.
void pbits(float x)
{
    union {
        float f;
        unsigned i;
    } u;
    int sign, mantissa, exponent, i;
    u.f = x;
    sign = u.i >> 31;
    exponent = ((u.i >> 23) & 255) - 127;
    mantissa = (u.i & ((1 << 23) - 1)) | (1 << 23);
    for (i = 0; i < 24; ++i) {
        if (mantissa & (1 << (23 - i)))
            printf("2^%d\n", exponent - i);
    }
}

This will print out the powers of two that sum to the given floating point number. For example,

$ ./a.out 156
2^7
2^4
2^3
2^2
$ ./a.out 0.3333333333333333333333333
2^-2
2^-4
2^-6
2^-8
2^-10
2^-12
2^-14
2^-16
2^-18
2^-20
2^-22
2^-24
2^-25

You can see how 1/3 is rounded up, which is not intuitive since we would always round it down in decimal, no matter how many decimal places we use.

Footnote: Don't do the following:

float x = ...;
unsigned i = *(unsigned *) &x; // no

The trick with the union is far less likely to generate warnings or confuse the compiler.

share|improve this answer
At the top of the code, you'll see a comment // Left as an exercise for the reader – Dietrich Epp Aug 3 '12 at 22:28
Oh, duh, I didn't :( – Daniel Fischer Aug 3 '12 at 22:36
This works great. It can also be somewhat generalized with a bunch of defines and a couple typedefs. Thank you! – Vortico Aug 4 '12 at 1:21

There is no need to work with the encoding of floating-point numbers. C provides routines for working with floating-point values in a portable way. The following works.

#include <math.h>
#include <stdio.h>
#include <stdlib.h>


int main(int argc, char *argv[])
{
    /*  This should be replaced with proper allocation for the floating-point
        type.
    */
    int powers[53];
    double x = atof(argv[1]);

    if (x <= 0)
    {
        fprintf(stderr, "Error, input must be positive.\n");
        return 1;
    }

    // Find value of highest bit.
    int e;
    double f = frexp(x, &e) - .5;
    powers[0] = --e;
    int p = 1;

    // Find remaining bits.
    for (; 0 != f; --e)
    {
        printf("e = %d, f = %g.\n", e, f);
        if (.5 <= f)
        {
            powers[p++] = e;
            f -= .5;
        }
        f *= 2;
    }

    // Display.
    printf("%.19g =", x);
    for (int i = 0; i < p; ++i)
        printf(" + 2**%d", powers[i]);
    printf(".\n");

    // Test.
    double y = 0;
    for (int i = 0; i < p; ++i)
        y += ldexp(1, powers[i]);

    if (x == y)
        printf("Reconstructed number equals original.\n");
    else
        printf("Reconstructed number is %.19g, but original is %.19g.\n", y, x);

    return 0;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.