active questions tagged bitarray - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T23:14:58Zhttp://stackoverflow.com/feeds/tag/bitarrayhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1575142/comparing-arbitrary-bit-sequences-in-a-byte-array-in-c1Comparing arbitrary bit sequences in a byte array in chabitue2009-10-15T21:18:44Z2009-10-20T05:14:36Z
<p>I have a couple uint8_t arrays in my c code, and I'd like to compare an arbitrary sequence bits from one with another. So for example, I have bitarray_1 and bitarray_2, and I'd like to compare bits 13 - 47 from bitarray_1 with bits 5-39 of bitarray_2. What is the most efficient way to do this?</p>
<p>Currently it's a huge bottleneck in my program, since I just have a naive implementation that copies the bits into the beginning of a new temporary array, and then uses memcmp on them.</p>
http://stackoverflow.com/questions/1250253/optimizing-bit-array-accesses2Optimizing bit array accessesmazin k.2009-08-09T00:27:33Z2009-08-10T02:29:53Z
<p>Hi all,
I'm using Dipperstein's bitarray.cpp class to work on bi-level (black and white) images where the image data is natively stored as simply as one pixel one bit.</p>
<p>I need to iterate through each and every bit, on the order of 4--9 megapixels per image, over hundreds of images, using a for loop, something like:</p>
<pre><code>for( int i = 0; i < imgLength; i++) {
if( myBitArray[i] == 1 ) {
// ... do stuff ...
}
}
</code></pre>
<p>Performance is usable, but not amazing. I run the program through gprof and find out there is significant time and millions of calls to <code>std::vector</code> methods like iterator and begin. Here's the top-sampled functions:</p>
<pre><code>Flat profile:
Each sample counts as 0.01 seconds.
% cumulative self self total
time seconds seconds calls s/call s/call name
37.91 0.80 0.80 2 0.40 1.01 findPattern(bit_array_c*, bool*, int, int, int)
12.32 1.06 0.26 98375762 0.00 0.00 __gnu_cxx::__normal_iterator<unsigned char const*, std::vector<unsigned char, std::allocator<unsigned char> > >::__normal_iterator(unsigned char const* const&)
11.85 1.31 0.25 48183659 0.00 0.00 __gnu_cxx::__normal_iterator<unsigned char const*, std::vector<unsigned char, std::allocator<unsigned char> > >::operator+(int const&) const
11.37 1.55 0.24 49187881 0.00 0.00 std::vector<unsigned char, std::allocator<unsigned char> >::begin() const
9.24 1.75 0.20 48183659 0.00 0.00 bit_array_c::operator[](unsigned int) const
8.06 1.92 0.17 48183659 0.00 0.00 std::vector<unsigned char, std::allocator<unsigned char> >::operator[](unsigned int) const
5.21 2.02 0.11 48183659 0.00 0.00 __gnu_cxx::__normal_iterator<unsigned char const*, std::vector<unsigned char, std::allocator<unsigned char> > >::operator*() const
0.95 2.04 0.02 bit_array_c::operator()(unsigned int)
0.47 2.06 0.01 6025316 0.00 0.00 __gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >::__normal_iterator(unsigned char* const&)
0.47 2.06 0.01 3012657 0.00 0.00 __gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char, std::allocator<unsigned char> > >::operator*() const
0.47 2.08 0.01 1004222 0.00 0.00 std::vector<unsigned char, std::allocator<unsigned char> >::end() const
... remainder omitted ...
</code></pre>
<p>I'm not really familiar with C++'s STL, but can anyone shed light on why, for instance, std::vector::begin() is being called a few million times? And, of course, whether there's something I can be doing to speed it up?</p>
<p><strong>Edit:</strong> I just gave up and optimized the search function (the loop) instead.</p>
http://stackoverflow.com/questions/1213997/is-there-a-generic-type-safe-bitarray-in-net1Is there a generic (type-safe) BitArray in .NET?Joan Venge2009-07-31T18:04:24Z2009-08-05T13:59:35Z
<p>Is there a generic BitArray in .NET? I only found the non-generic one.</p>
<p>Can there be a generic BitArray? (i.e. would it be reasonable?)</p>
<p><hr /></p>
<h3>Edit:</h3>
<p>Maybe I should have said type-safe not generic.</p>
<p>Basically when you enumerate the type as <code>object</code>, should it not be <code>int</code> or <code>bool</code>? Or one of them provided in another member enumerator?</p>
<p><hr /></p>
<h3>Example:</h3>
<pre><code>foreach (bool bit in myBitArray)
{
}
</code></pre>
<p><hr /></p>
<h3>Edit:</h3>
<p>I just checked the enumerator of the <code>BitArray</code> class, but everything returns an <code>object</code> except <code>.Current</code> property:</p>
<pre><code>public virtual object Current
</code></pre>
http://stackoverflow.com/questions/1227163/what-are-some-common-uses-for-bitarrays1What are some common uses for bitarrays?jetimms2009-08-04T12:17:49Z2009-08-04T12:25:03Z
<p>I've done an example using bitarrays from a newbie manual. I want to know what they can be used for and what some common data structures for them (assuming that "array" is fairly loose terminology.)</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1130673/does-enumerating-a-bitarray-cause-lots-of-boxing-unboxing2Does enumerating a BitArray cause lots of boxing/unboxing?thecoop2009-07-15T10:42:31Z2009-07-15T10:50:00Z
<p>System.BitArray only implements the non-generic IEnumerable, which returns an Object for the IEnumerator.Current property. Does running a foreach over a BitArray - eg</p>
<pre><code>foreach (bool b in bitArray)
{
// ...
}
</code></pre>
<p>box and unbox each and every bit value?</p>
<p>Looking at the bitarray enumerator in reflector, it looks like it does a fresh bitmask on every call of MoveNext() rather than something cleverer. Is there a more efficient way of enumerating a BitArray, or a replacement for BitArray that has the same storage characteristics? (List<bool> etc uses one byte per bool, rather than a single bit, so uses 8x as much space)</p>
http://stackoverflow.com/questions/973891/c-prime-generator-maxxing-out-bit-array0C# Prime Generator, Maxxing out Bit ArrayJoe2009-06-10T05:56:28Z2009-06-10T06:20:30Z
<p>(C#, prime generator)
Heres some code a friend and I were poking around on:</p>
<pre><code>public List<int> GetListToTop(int top)
{
top++;
List<int> result = new List<int>();
BitArray primes = new BitArray(top / 2);
int root = (int)Math.Sqrt(top);
for (int i = 3, count = 3; i <= root; i += 2, count++)
{
int n = i - count;
if (!primes[n])
for (int j = n + i; j < top / 2; j += i)
{
primes[j] = true;
}
}
if (top >= 2)
result.Add(2);
for (int i = 0, count = 3; i < primes.Length; i++, count++)
{
if (!primes[i])
{
int n = i + count;
result.Add(n);
}
}
return result;
}
</code></pre>
<p>On my dorky AMD x64 1800+ (dual core), for all primes below 1 billion in 34546.875ms. Problem seems to be storing more in the bit array. Trying to crank more than ~2billion is more than the bitarray wants to store. Any ideas on how to get around that?</p>
<p>Thanks guys =)</p>
http://stackoverflow.com/questions/780127/installing-bitarray-in-python-2-6-on-windows0Installing bitarray in Python 2.6 on WindowsJohn Fouhy2009-04-23T02:48:41Z2009-04-23T07:11:03Z
<p>I would like to install <a href="http://pypi.python.org/pypi/bitarray/" rel="nofollow">bitarray</a> in Windows running python 2.6.</p>
<p>I have mingw32 installed, and I have <code>C:\Python26\Lib\distutils\distutils.cfg</code> set to:</p>
<pre><code>[build]
compiler = mingw32
</code></pre>
<p>If I type, in a <code>cmd.exe</code> window:</p>
<pre><code>C:\Documents and Settings\john\My Documents\bitarray-0.3.5>python setup.py install
</code></pre>
<p>I get:</p>
<pre><code>[normal python messages skipped]
C:\MinGW\bin\gcc.exe -mno-cygwin -mdll -O -Wall -IC:\Python26\include -IC:\Python26\PC -c bitarray/_bitarray.c -o build\temp.win32-2.6\Release\bitarray\_bitarray.o
bitarray/_bitarray.c:2197: error: initializer element is not constant
bitarray/_bitarray.c:2197: error: (near initialization for `BitarrayIter_Type.tp_getattro')
bitarray/_bitarray.c:2206: error: initializer element is not constant
bitarray/_bitarray.c:2206: error: (near initialization for `BitarrayIter_Type.tp_iter')
bitarray/_bitarray.c:2232: error: initializer element is not constant
bitarray/_bitarray.c:2232: error: (near initialization for `Bitarraytype.tp_getattro')
bitarray/_bitarray.c:2253: error: initializer element is not constant
bitarray/_bitarray.c:2253: error: (near initialization for `Bitarraytype.tp_alloc')
bitarray/_bitarray.c:2255: error: initializer element is not constant
bitarray/_bitarray.c:2255: error: (near initialization for `Bitarraytype.tp_free')
error: command 'gcc' failed with exit status 1
</code></pre>
<p>Can anyone help?</p>
http://stackoverflow.com/questions/688314/converting-a-range-into-a-bit-array0Converting a range into a bit arrayJubJub2009-03-27T02:29:30Z2009-03-27T05:16:47Z
<p>I'm writing a time-critical piece of code in C# that requires me to convert two unsigned integers that define an inclusive range into a bit field. Ex:</p>
<pre><code>uint x1 = 3;
uint x2 = 9;
//defines the range [3-9]
// 98 7654 3
//must be converted to: 0000 0011 1111 1000
</code></pre>
<p>It may help to visualize the bits in reverse order</p>
<p>The maximum value for this range is a parameter given at run-time which we'll call <code>max_val</code>. Therefore, the bit field variable ought to be defined as a <code>UInt32</code> array with size equal to <code>max_val/32</code>:</p>
<pre><code>UInt32 MAX_DIV_32 = max_val / 32;
UInt32[] bitArray = new UInt32[MAX_DIV_32];
</code></pre>
<p>Given a range defined by the variables <code>x1</code> and <code>x2</code>, what is the fastest way to perform this conversion?</p>
http://stackoverflow.com/questions/518513/is-there-any-simple-way-to-concatenate-two-bitarray-c-net3Is there any simple way to concatenate two BitArray (C# .NET) ?Jader Dias2009-02-05T23:45:12Z2009-03-12T20:27:03Z
<p>I have</p>
<pre><code>var previous = new BitArray(new bool[]{true});
var current = new BitArray(new bool[]{false});
</code></pre>
<p>I want to concatenate them. I have already tried:</p>
<pre><code>var next = new BitArray(previous.Count + current.Count);
var index = 0;
for(;index < previous.Count; index++)
next[index] = previous[index];
var j = 0;
for(;index < next.Count; index++, j++)
next[index] = current[j];
previous = current;
</code></pre>
<p>But it doesn't look like the best way to do it.</p>
http://stackoverflow.com/questions/638524/is-there-something-wrong-with-bitarrays-in-c2Is there something wrong with BitArrays in C#?Omar Kooheji2009-03-12T13:03:05Z2009-03-12T18:54:37Z
<p>When I conpile this code:</p>
<pre><code>BitArray bits = new BitArray(3);
bits[0] = true;
bits[1] = true;
bits[2] = true;
BitArray moreBits = new BitArray(3);
bits[0] = true;
bits[1] = true;
bits[2] = true;
BitArray xorBits = bits.Xor(moreBits);
foreach (bool bit in xorBits)
{
Console.WriteLine(bit);
}
</code></pre>
<p>I get the following output:</p>
<blockquote>
<blockquote>
<p>True True True</p>
</blockquote>
</blockquote>
<p>When I do an xor on two boolean values by saying true ^ true i get false. </p>
<p>Is there something wrong with the code. My memory of the truth table for XOR was that True XOR True is false.</p>
http://stackoverflow.com/questions/30877/fastest-way-to-calculate-primes-in-c1Fastest way to calculate primes in C#?palotasb2008-08-27T18:54:44Z2008-12-29T22:26:02Z
<p>I actually have an answer to my question but it is not parallelized so I am interested in ways to improve the algorithm. Anyway it might be useful as-is for some people.</p>
<pre><code>int Until = 20000000;
BitArray PrimeBits = new BitArray(Until, true);
/*
* Sieve of Eratosthenes
* PrimeBits is a simple BitArray where all bit is an integer
* and we mark composite numbers as false
*/
PrimeBits.Set(0, false); // You don't actually need this, just
PrimeBits.Set(1, false); // remindig you that 2 is the smallest prime
for (int P = 2; P < (int)Math.Sqrt(Until) + 1; P++)
if (PrimeBits.Get(P))
// These are going to be the multiples of P if it is a prime
for (int PMultiply = P * 2; PMultiply < Until; PMultiply += P)
PrimeBits.Set(PMultiply, false);
// We use this to store the actual prime numbers
List<int> Primes = new List<int>();
for (int i = 2; i < Until; i++)
if (PrimeBits.Get(i))
Primes.Add(i);
</code></pre>
<p>Maybe I could use multiple <code>BitArray</code>s and <a href="http://msdn.microsoft.com/en-us/library/system.collections.bitarray.and.aspx" rel="nofollow">BitArray.And()</a> them together?</p>