up vote 1 down vote favorite
share [g+] share [fb]

i got really confused every time when i encounterd bit operations,especially those shifts,rotates,overflow things etc.I wonder if there's any book/article on the web introducing boolean algebra,which could give me a solid background of boolean algebra,thanks!

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

Two really great books come to mind.

Also, online you can read Bit Twiddling Hacks.

link|improve this answer
+1 for the bit twiddling hacks – Draemon Jul 9 '09 at 12:03
feedback

I don't know of any books on this subject, but here are some online resources... It sounds to me like what you want is to understand binary better to start with. Here is a little treatment of Binary from MathWorld, which is the web's best mathematics reference. Here is an applet on binary shift. There is a wikipedia article on Bitwise Operation. Ben Fry has created a good calculator that includes Bit Roll (Rotation) in it - be sure to look at the help on the calculator as it does much more than is obvious at first - try changing the Mode to Bin, for example.

link|improve this answer
this is the one,thanks! – mf25 Apr 19 '09 at 16:04
feedback

If you are using C like languages you can also read this: bitwise operations in C

link|improve this answer
feedback

At university we used a book called Introduction to Logic Design. Covered everything from boolean algebra up to FPGA stuff. Pretty comprehensive and it has a fair amount of exercises.

link|improve this answer
thanks but i need a "crash course" ,that's too comprehensive and i'm not interested in electro..anyway,thanks lot – mf25 Apr 19 '09 at 15:59
feedback

Your Answer

 
or
required, but never shown

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