Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
8answers
1k views

f(int x) { return x == 0 ? 0 : 1; } in Java without conditionals

I want to implement f(int x) { return x == 0 ? 0 : 1; } in Java. In C, I'd just "return !!x;", but ! doesn't work like that in Java. Is there some way to do it without conditionals? Without something ...
20
votes
11answers
1k views

How to calculate 2^n-1 efficiently without overflow?

I want to calculate 2n-1 for a 64bit integer value. What I currently do is this for(i=0; i<n; i++) r|=1<<i; and I wonder if there is more elegant way to do it. The line is in an inner ...
18
votes
7answers
484 views

Optimizing Long.bitCount

I have a program that is making a huge number of calls to Long.bitCount(), so many that it is taking 33% of cycles on one CPU core. Is there a way to implement it that is faster than the Sun JDK ...
17
votes
13answers
8k views

Position of least significant bit that is set

I am looking for an efficient way to determine the position of the least significant bit that is set in an integer, e.g. for 0x0FF0 it would be 4. A trivial implementation is this: unsigned ...
7
votes
4answers
616 views

Extracting rightmost N bits of an integer

In the yester Code Jam Qualification round http://code.google.com/codejam/contest/dashboard?c=433101#s=a&a=0 , there was a problem called Snapper Chain. From the contest analysis I came to know ...
7
votes
6answers
3k views

toggle two bits with a single operation in C?

Lets say I have a byte with 6 unknown values: ???1?0?? and I want to swap bits 2 and 4 (without changing any of the ? values): ???0?1?? But how would I do this in one operation in C? I'm ...
4
votes
6answers
380 views

bit twiddling in java - decomposing long into long[] of bitmasks

I am decomposing a single long into a long[] of single bit longs by public static int decompose(long[] buffer, long base) { int count = Long.bitCount(base); for (int i=0; i<count; i++) { ...
3
votes
2answers
131 views

Bit twiddling for Java or Scala programmers

Does anyone know of good tutorials or even a good book to master bit-level operations? I mean it's almost clear what every operation does (in Java for instance) or where to find the right ...
3
votes
7answers
228 views

shift bits from a byte into an (array) C (solved)

I solved the problem but dont know how to post it in a good manor, so I edit this post and put the solution in the end of it. Thanks for trying to help me. Need help with following in C, trying to ...
2
votes
4answers
106 views

Find a unique bit in a collection of numbers

Best way to explain this is a demonstration. There is a collection of numbers. They may be repeated, so: 1110, 0100, 0100, 0010, 0110 ... The number I am looking for is the one that has a bit set, ...
2
votes
2answers
111 views

.NET equivalent of Java's Integer.bitCount?

Is there a method similar to Java's Integer.bitCount(int) or Long.bitCount(long) anywhere in the .NET Framework? (For those unfamiliar with these Java methods) this is also known as: Hamming Weight ...
2
votes
7answers
501 views

mirror bits of a 32 bit word

How would you do that in C? (Example: 10110001 becomes 10001101 if we had to mirror 8 bits). Are there any instructions on certain processors that would simplify this task?
2
votes
3answers
251 views

c/c++: two operations on array of bits

// b: uint32_t array of size n => 32*n bits // bit index i, 0 <= i < 32 * n // bit in b at bit index 0 is always 0! unsigned idx_of_first_zero_bit_before_or_at (uint32_t *b, unsigned n, ...
2
votes
1answer
195 views

bit twiddling in java - power set, ordered by size

Following up my previous bit-twiddling question, now I'm looking to trim down the method that uses that one (though, an unbuffered version, since the life of the array is only this object). This is ...
2
votes
8answers
1k views

find string of N 1-bits in a bit-array

As the title sais I want to find a successive run of n one-bits in a bit-array of variable size (M). The usual use-case is N <= 8 and M <= 128 I do this operation a lot in an innerloop on an ...
2
votes
6answers
1k views

C - Need to compare `n` lowest bits of an int for equality

C - Need to compare n lowest bits of an int for equality. I.e. n = 4; xxxx1001 == xxxx1001 (x is don't care) I.e. n = 2; xxxxxx01 == xxxxxx01 Can't think of a nice way to do it without using ...
2
votes
5answers
1k views

How can I set all bits to '1' in a binary number of an unknown size?

I'm trying to write a function in assembly (but lets assume language agnostic for the question). How can I use bitwise operators to set all bits of a passed in number to 1? I know that I can use ...
2
votes
6answers
317 views

Detecting single one-bit streams within an integer

I have to check a number if it satisfies the following criteria: in binary, all one-bits must be successive. the number must have at least one bit set. the successive one-bits may start at the MSB ...
1
vote
2answers
192 views

Bit shifting coding efficiency (i.e. neat tricks)

I'm working on a Objective-C program where I'm getting bitfields over the network, and need to set boolean variables based on those bits. Currently I'm representing the bitfields as int's, and then ...
1
vote
3answers
530 views

Extract fractional part of double *efficiently* in C

I'm looking to take an IEEE double and remove any integer part of it in the most efficient manner possible. I want 1035 ->0 1045.23->0.23 253e-23=253e-23 I do not care about properly ...
1
vote
4answers
674 views

Find a pattern of binary numbers using shift-right and bitwise-AND?

I'm attempting to write a function in assembly that will detect if a longer binary number contains a smaller binary pattern. Example: Does 100111 contain 1001? When I read this problem I figured ...
1
vote
4answers
305 views

What is the best way to learn about twiddling with binary data?

What is the best way to learn about twiddling with binary data? Mainly what I'm referring to here is learning to reading/writing file existing file formats that are in binary. I saw one of my ...
1
vote
2answers
316 views

How should I do an equality test for 80bit IEEE floating point?

related to: comparing ieee floats and doubles for equality Should we compare floating point numbers for equality against a relative error Most effective way for float and double comparison However ...
1
vote
5answers
780 views

Suggestions on how to make a configurable parser

I want to build a parser for a C like language. The interesting aspect about it is that I want to build it in such a way that someone who has access to the source can easily modified it to extend the ...
0
votes
3answers
59 views

Convert an Int to an array of Ints indicating positions of bits in C

So if I had an int, say 0000100101101001, it should be turned to an array like {0,3,5,6,8,11}. I am using a convoluted system using clz (count leading zeros) and bit masks to do it now, but something ...
0
votes
1answer
42 views

Bit Shifting with a Count greater than 30

I am confused on the Bit Shift Operators (in c#). Can you shed light on why the value of "a" below returns "1" instead of "4294967296": ulong a = 1 << 32 I'm running a 32bit machine. Is ...
0
votes
6answers
174 views

How might I set the bottom 3 bytes of a 4-byte long while leaving the top byte intact?

Relevant code is this: typedef unsigned long int chunk_head; typedef struct malloc_chunk { // Contains the size of the data in the chunk and the flag byte. chunk_head head; // ...