I was reading this book entitled, Cracking the Coding Interview by Laakman. There is this part where she (the author p.g. 202) did:
byte[] bitfield = new byte [0xFFFFFFF/8];//there are 7 F's
She was allocating 4 billion bits. However, isn't 0xFFFFFFF = 2^28-1? Thus, she has only allocated a byte array of 2^28-1/8 bytes, which is not remotely close to 4 billion bits. It is only 2^28-1 bits. My question is- is she wrong or am I doing something wrong? How do we allocate 4 billion bits? I have tried:
byte[] bitfield = new byte[0xfffffff *2];
Although the above causes the jvm to run out of heap space.
While we are at it, what is the best was to express hex values? e.g. 0xffffffff or 0xFFFFFFFF?
0xFFFFFFFF(8 F's) gets you to 4 billion – Hristo Aug 4 '11 at 16:33byte[] bitfield = new byte[0xfffffff *2];should be about right (depending on your interpretation of "billion"). – Hot Licks Aug 4 '11 at 16:39