Tagged Questions
The bits tag has no wiki summary.
39
votes
27answers
7k views
How to determine if a number is positive or negative in Java?
I was asked this question in Amazon Chennai(India) interview , to determine whether an number is positive or negative. The rules are that , we should not use conditional operators such as <, and ...
18
votes
2answers
4k views
What is the best way to do Bit Field manipulation in Python?
I'm reading some MPEG Transport Stream protocol over UDP and it has some funky bitfields in it (length 13 for example). I'm using the "struct" library to do the broad unpacking, but is there a simple ...
10
votes
4answers
387 views
float bits and strict aliasing
I am trying to extract the bits from a float without invoking undefined behavior. Here is my first attempt:
unsigned foo(float x)
{
unsigned* u = (unsigned*)&x;
return *u;
}
As I ...
8
votes
9answers
9k views
Find out number of bits needed to represent a positive integer in binary?
This is probably pretty basic, but to save me an hour or so of grief can anyone tell me how you can work out the number of bits required to represent a given positive integer in Java?
e.g. I get a ...
7
votes
4answers
1k views
Extract bit sequences of arbitrary length from byte[] array efficiently
I'm looking for the most efficient way of extracting (unsigned) bit sequences of arbitrary length (0 <= length <= 16) at arbitrary position. The skeleton class show how my current implementation ...
6
votes
2answers
201 views
Double.doubleToLongBits equivalent in C#?
there's a Java method Double.doubleToLongBits that basically gets a double and return a long with the same bits.
How can I do it in C#?
Thank you
6
votes
3answers
559 views
Number of bits to represent a number
I'm trying to write a function to return the number of bits a positive integer less that the Javascript limit of (2^53)-1 is. However im being hit by precision problems, and want to avoid big integer ...
5
votes
3answers
241 views
Problem with bit swapping in Haskell
As part of a school project I'm implementing some crypthographic algorithms in Haskell. As you probably know this involves quite a lot of low level bit fiddling. Now I am stuck on one particular sub ...
5
votes
4answers
153 views
macro to compute number of bits needed to store a number n
Let's say I need to write C macro that returns number of bits(1..32) needed to store unsigned 32-bit integer. (Result equals ceiling(log2(n)).
I need it as compile-time computed macro, not a ...
5
votes
3answers
192 views
It is possible to write less than 1 byte to a file
As far as I know the smallest unit in C is a byte. Where does this constraint comes from? CPU?
For example, how can I write a nibble or a single bit to a file?
5
votes
6answers
144 views
Can you explain the bits I'm getting from unpack?
I'm relatively inexperienced with Perl, but my question concerns the unpack function when getting the bits for a numeric value. For example:
my $bits = unpack("b*", 1);
print $bits;
This results in ...
5
votes
4answers
301 views
Why is it useful to count the number of bits?
I've seen the numerous questions about counting the number of set bits in an insert type of input, but why is it useful?
For those looking for algorithms about bit counting, look here:
...
5
votes
5answers
2k views
Using Python How can I read the bits in a byte?
I have a file where the first byte contains encoded information. In Matlab I can read the byte bit by bit with var=fread(file,8, 'ubit1') then retrieve each bit by var(1),var(2), etc.
Is there any ...
4
votes
3answers
1k views
Byte to Binary String C# - Display all 8 digits
I want to display one byte in textbox.
Now I'm using:
Convert.ToString(MyVeryOwnByte, 2);
But when byte is has 0's at begining those 0's are being cuted.
Example:
MyVeryOwnByte = 00001110 // ...
4
votes
5answers
353 views
Swap every pair of bits in byte
This was a question asked by an NVIDIA representative at a career fair:
Write small, efficient code to swap every pair of bits inside a byte; for example, 10 11 01 10 should become 01 11 10 01.
Is ...
4
votes
8answers
1k views
How do I count the number of zero bits in an integer?
How would i go about finding the number of 'zero' bits in C++.
Suppose I have an integer;
int value = 276;
For which I have the bits 100010100, but how do I count the zeros?
4
votes
5answers
426 views
Java Working with bits
Let me start by saying I have never really worked with bits before in programming. I have an object that can be in 3 states and I want to represent those states using a 3 bit array.
For example:
I ...
4
votes
2answers
293 views
C# Why does 127 = this bit string?
Given this code which prints all the bits in an integer out:
private string getBitLiteral(bool bitVal)
{
if (bitVal)
{
return ("1");
}
else
{
return ("0");
}
}
...
4
votes
4answers
678 views
The showbits() function
While reading a book called "Let us C" I read that a function showbit() exists which can show you the bits of the number. There wasn't any special header file mentioned for it. Searched for it on the ...
4
votes
6answers
478 views
What is the fastest way to calculate the number of bits needed to store a number
I'm trying to optimize some bit packing and unpacking routines. In order to do the packing I need to calculate the number of bits needed to store integer values. Here is the current code.
if (n == ...
4
votes
4answers
356 views
How to count bits for a number in Python?
1 -> 1
5 -> 3
10 -> 4
100 -> 7
1000 -> 10
How to count bits for a number in Python?
3
votes
1answer
69 views
64 bits application starting 32 bits process
I'm working on a 64 bits application coded with .Net 4.0, C#.
In this application, at some point, I need to start another exe file using the following code :
l_process.StartInfo.FileName = ...
3
votes
4answers
139 views
How does the md5 hashing algorithm compress data to a fixed length?
I know that MD5 produces a 128-bit digest. My question is, how does it produce this fixed length output from a message of 128bits+?
EDIT:
I have now a greater understanding of hashing functions now. ...
3
votes
5answers
94 views
Programming language with arbitrary but fixed precision integers?
My apologies if this has already been posted here, but are there any programming languages out there that support n-bit integer types for arbitrary n as primitives? That is, is there a language where ...
3
votes
3answers
137 views
Concatenating two bit patterns
I need to merge two variables. They both are unsigned ints.
First: 11000000
Second: 11111010000
Desired output:
11011111010000
In words: I need to put all the 1 followed by one 0 (in first ...
3
votes
2answers
540 views
Bit operations (C++)
Recently I had a question on the interview - I was asked to compare bitwise operations in performance terms.
Like, give a brief description of the performance of different bit operations.
I ...
3
votes
1answer
364 views
Calculating the maximum size of a signed integer
I wanted to know what the maximum value my time_tcan hold was, so I wrote a little program helping me. It needs one argument: the amount of bytes (1 byte = 8 bits). So I wrote it and tested it. It ...
3
votes
1answer
224 views
Finding two consecutive 1's in a bitstring in less then n time?
I am trying to figure out a way to see if a bitstring has 2 consecutive ones in the bitstring size n in less then n time.
For example, lets say we had a bitstring size 5 (index 0-4). If index 1 and ...
3
votes
6answers
596 views
Is there a way to access individual bits with a union?
I am writing a C program. I want a variable that I can access as a char but I can also access the specific bits of. I was thinking I could use a union like this...
typedef union
{
unsigned char ...
3
votes
7answers
1k views
How can I invert bits of an unsigned byte in Java?
I am trying to write a decoder for a very simple type of encryption. Numbers from 0-255 are entered via Scanner, the bits are inverted, and then converted to a character and printed.
For example, ...
3
votes
4answers
636 views
Swap bits in c++ for a double
Im trying to change from big endian to little endian on a double. One way to go is to use
double val, tmp = 5.55;
((unsigned int *)&val)[0] = ntohl(((unsigned int *)&tmp)[1]);
((unsigned int ...
3
votes
5answers
262 views
How is 6 trits equal to 9.5 bits?
This reddit thread says 6 trits ~ 9.5 bits.
How is 6 trits ~ 9.5 bits?
3
votes
2answers
55 views
Looking for a clear and concise web page explaining why lower bits of random numbers are usually not that random
I am putting together an internal "every developer should know" wiki page.
I saw many discussions regarding rand() % N, but not a single web page that explains it all.
For instance, I am curious if ...
3
votes
9answers
3k views
Generate all binary strings of length n with k bits set
What's the best algorithm to find all binary strings of length n that contain k bits set? For example, if n=4 and k=3, there are...
0111
1011
1101
1110
I need a good way to generate these given ...
3
votes
6answers
2k views
How do we determine if a processor is 8-bit; 16-bit or 32-bit
Is it determined by size of the address buss; if yes then was 8086 a 20-bit processor? If no what is criteria for assigning a bit number like 8-bit, 16-bit, 32-bit to processor?
3
votes
5answers
251 views
Unexpected bitshift results
I'm initializing an unsigned short int with a = 0xff (all bits are set).
Then I assign b to a>>7 which should yield (0000 0001) and it does. However, the odd thing is that when I assign c to ...
3
votes
3answers
2k views
Designing a BitStream in C#
I'm looking at the C# library called BitStream, which allows you to write and read any number of bits to a standard C# Stream object. I noticed what seemed to me a strange design decision:
When ...
3
votes
2answers
182 views
Why no dynamic bit pattern in function argument?
I am experimenting with bit pattern matching in Erlang:
-module(test).
-export([test/2]).
%test(P,<<X:P,0:1>>) ->
% X.
test(P,X) ->
<<Y:P,0:1>> = X,
Y.
...
2
votes
4answers
94 views
Convert bytes to bits in python
I am working with Python3.2. I need to take a hex stream as an input and parse it at bit-level. So I used
bytes.fromhex(input_str)
to convert the string to actual bytes. Now how do I convert these ...
2
votes
3answers
82 views
Converting a String representation of bits to a byte
I'm just beginning to learn about file compression and I've run into a bit of a roadblock. I have an application that will encode a string such as "program" as a compressed binary representation ...
2
votes
3answers
59 views
Help to begin in assigning specific bits
So I have a problem for my class that I am having trouble getting started on. I am not asking people to do the problem for me, I just would like any nudge in the right direction. I need to create a ...
2
votes
7answers
166 views
Memory and irrationality and floating numbers
Some numbers can not be stored in "memory bits" as their binary representation would make them go endlessly.
In binary 11.111011101110... this is not the exact number. I can't remember exactly what ...
2
votes
1answer
56 views
Using bitfields for scheduling?
Does it make any sense to use bitfields to store and manage a schedule?
I'm working on a Ruby on Rails application to handle restaurant opening hours and reservations, and I'm having some difficulty ...
2
votes
2answers
58 views
Large number arithmetic
I have read somewhere that to handle large number arithmetic (really really large) we should store number in large base at max squareroot(MAXNUMBER). Because representing a number in larger base needs ...
2
votes
2answers
187 views
How to implement MS specific _BitScanReverse() function?
From MSDN
Search the mask data from most significant bit (MSB) to least significant bit (LSB) for a set bit (1).
unsigned char _BitScanReverse
(
unsigned long * Index,
unsigned long Mask
);
...
2
votes
1answer
402 views
Can`t debug pic32 microcontroller or update the configuration bits
i have an PIC32MX460L512 microcontroler( Cerebot MX4 board from Digilent) and after doing some projects, i can`t program it any more.
This happend after i tested the board multipliers and dividers to ...
2
votes
5answers
267 views
How to define your encryption's strength in terms of bits?
I am designing an encryption algorithm. I have examined other algorithms such as AES and RSA and have come to the conclusion I need to implement keys. I have decided for now that it will be a single ...
2
votes
6answers
195 views
Reading/Writing bits in memory
Let's say I'm given a void* memory address and I need to print the bits located in this memory address. How can I do this?
In my processor memory addresses are 32bits as are memory values, also int ...
2
votes
3answers
556 views
How to change 4 bits in unsigned char?
unsigned char *adata = (unsigned char*)malloc(500*sizeof(unsigned char));
unsigned char *single_char = adata+100;
How do I change first four bits in single_char to represent values between 1..10 ...
2
votes
2answers
413 views
Converting bytes to Int64s/Floats/Doubles in Haskell
I'm trying to parse a binary file format in Haskell (Apple's binary property list format), and one of the things required by the format is to treat sequences of bytes as either (a) unsigned 1-, 2-, or ...