- What have you used bitwise operations for?
- why are they so handy?
- can someone please recommend a VERY simple tutorial?
|
|
|||||
|
closed as not constructive by Servy, andrewsi, Andrew Whitaker, 0x7fffffff, dbaseman Oct 6 '12 at 3:49
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Although everyone seems to be hooked on the flags usecase, that isn't the only application of bitwise operators (although probably the most common). Also C# is a high enough level language that other techniques will probably be rarely used, but it's still worth knowing them. Here's what I can think of: The Another common use for these operators is to stuff two 16-bit integers into one 32-bit integer. Like:
This is common for direct interfacing with Win32 functions, which sometimes use this trick for legacy reasons. And, of course, these operators are useful when you want to confuse the inexperienced, like when providing an answer to a homework question. :) In any real code though you'll be far better off by using multiplication instead, because it's got a much better readability and the JIT optimizes it to Quite a few curious tricks deal with the
A couple of tricks I have seen using this operator: Swapping two integer variables without an intermediary variable:
Doubly-linked list with just one extra variable per item. This will have little use in C#, but it might come in handy for low level programming of embedded systems where every byte counts. The idea is that you keep track of the pointer for the first item; the pointer for the last item; and for every item you keep track of
To traverse from the end you just need to change the very first line from Another place where I use the
|
||||
|
I use bitwise operators for security in my applications. I'll store the different levels inside of an Enum:
And then assign a user their levels:
And then check the permissions in the action being performed:
|
|||||||||||||
|
|
I don't know how practical, solving a sudoku you consider to be, but let's assume it is. Imagine you want to write a sudoku solver or even just a simple program, that shows you the board and lets you solve the puzzle yourself, but ensures the moves are legal. The board itself will most probably be represented by a two-dimensional array like:
Value Now imagine you want to check if some move is legal. Obviously you can do it with a few loops, but bitmasks allow you to make things much faster. In a simple program that just ensures the rules are obeyed, it doesn't matter, but in a solver it could. You can maintain arrays of bitmasks, that store information about the numbers that are already inserted in each row, each column a and each 3x3 box.
The mapping from the number to the bitpattern, with one bit corresponding to that number set, is very simple
In C#, you can compute the bitpattern this way (
In the line above
At the beginning, the mask for each row, column and box is Let's assume you insert value 5 in row 3 (rows and columns are numbered from 0). Mask for row 3 is stored in
The goal is to set the bit corresponding to the value 5 in this mask. You can do it using bitwise or operator (
and then you use the
or using shorter form
Now your mask indicates that there are values If you want to check, if some value is in the row, you can use For example, if you want to check if value 3 is in the row, you can do that this way:
Below are methods for setting a new value in the board, maintaining appropriate bitmasks up to date and for checking if a move is legal.
Having the masks, you can check if the move is legal like this:
|
|||||
|
|
They can be used for a whole load of different applications, here is a questions I have previously posted here, which uses bitwise operations: http://stackoverflow.com/questions/560956/bitwise-and-bitwise-inclusive-or-question-in-java For other examples, have a look at (say) flagged enumerations. In my example, I was using bitwise operations to change the range of a binary number from -128...127 to 0..255 (changing it's representation from signed to unsigned). the MSN article here -> http://msdn.microsoft.com/en-us/library/6a71f45d%28VS.71%29.aspx is useful. And, although this link: is very technical, it is covering everything. HTH |
|||
|
|
|
Anytime you have an option of 1 or more in combination of items then bitwise is usually an easy fix. Some examples include security bits (waiting on Justin's sample..), scheduling days, etc. |
|||
|
|
|
I would have to say one of the most common uses is modifying bitfields to compress data. You mostly see this in programs attempting to be economical with packets. Example of network compression using bitfields |
|||
|
|
|
One of the most frequent things I use them for in C# is producing hashcodes. There's some reasonably good hashing methods that use them. E.g. for a co-ordinate class with an X an Y that were both ints I might use:
This quickly generates a number that is guaranteed to be equal when produced by an equal object (assuming that equality means both X and Y parameters are the same in both objects compared) while also not producing clashing patterns for low-valued objects (likely to be most common in most applications). Another is combining flag enumerations. E.g. There are some low-level operations that are more commonly not necessary when you are coding against a framework like .NET (e.g. in C# I won't need to write code to convert UTF-8 to UTF-16, it's there for me in the framework), but of course somebody had to write that code. There are a few bit-twiddling techniques, like rounding up to the nearest binary number (e.g. round up 1010 to 10000):
Which are useful when you need them, but that tends not to be very common. Finally, you can also use them to micro-optimise mathematics such as |
|||||||
|
|
If you ever need to communicate with hardware you'll need to use bit twiddling at some point. Extracting the RGB values of a pixel value. So many things |
|||
|
|
|
|||
|
|
Binary sort. There were issues where the implementation was using a division operator instead of a bitshift operator. This caused BS to fail after the collection got to sizes above 10,000,000 |
|||
|
|
|
You'll use them for various reasons:
I'm sure you can think of others. That being said, sometimes you need to ask yourself: is the memory and performance boost worth the effort. After writing that sort of code, let it rest for a while and come back to it. If you struggle with it, rewrite with a more maintainable code. On the other hand, sometimes it does make perfect sense to use bitwise operations (think cryptography). Better yet, have it read by someone else, and document extensively. |
|||
|
|
|
Games! Back in the days, I used it to represent a Reversi player's pieces. It's 8X8 so it took me a |
|||
|
|
|
Dozens of bit twiddling examples here The code is in C, but you can easily adapt it to C# |
|||
|
|