[UVA] 183 - Bit Maps
Bit Maps
The bitmap is a data structure that arises in many areas of computing.
In the area of graphics, for example, a bitmap can represent an image
by having a 1 represent a black pixel and a 0 represent a white pixel.
Consider the following two ways of...