Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have just quickly coded these 2 functions to create a bitarray from a biginteger and viceversa.

Here it is along with a quick test, which returns:

1234235612312312311
1000100100000111000101100000000001001000000110001100111110111
1234235612312312311

Since I am a beginner with this stuff, and I'm feeling this code is pretty clumsy could you please suggest alternative smarter ways (faster or better looking) to code these 2 simple functions:

BigintegerToBitArray
BitArrayToBigintegerValue

Thank you

Note: clearly BigInteger needs System.Numerics

Code:

Not deserved

share|improve this question
3  
I think this is better off at codereview. – CodeCaster Dec 20 '12 at 0:05
Checkout this stackoverflow posting also do a google search there are plenty of good examples Pam, stackoverflow.com/questions/3684002/bitarray-shift-bits – DJ KRAZE Dec 20 '12 at 0:08

closed as off topic by Mitch Wheat, anthony-arnold, Stony, NullPointerException, Jason Dec 20 '12 at 2:01

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 1 down vote accepted

By the way I wouldn't use BitArray. BitArray doesn't give you some ultra-compact space saving. It still stores the bits as ints. I think BitArray is more for heavy duty flag manipulation, and making binary file headers. You seem to just want to convert a number to a base 2 representation, so just use a normal array, or a string.

If you would allow python (as an example for you to follow in C#) then try the following :

# the quotient function. Takes integers n and r
# returns the number of times r goes into n, as an integer
def Q(n,r):
    return n / r

# the remainder function. Takes integers n and r
# returns the remainder when n is divided by r, as an integer 
def R(n,r):
    return n % r


# accepts an integer n, returns its representation in base r (r <= 10), as a string
def radix(n,r):
    nf = n
    nrep = []
    while nf > 0:
        nr = R(nf,r)
        nf = Q(nf,r)
        nrep.append(str(nr))
    return ''.join(nrep)

def base2(n):
    return radix(n,2)

# accepts a string representation of n, in base r (r <= 10)
# returns the magnitude of n
def deradix(nrep,r):
    power = 1
    magnitude = 0
    for unit in nrep:
        term = power*int(unit)
        magnitude += term
        power *= r
    return magnitude

 # accepts a string representation of n in base 2, return the magnitude of n 
def debase2(nrep):
    return deradix(nrep,2)

If you follow this basic format. Function for radix conversion, you can't go wrong.

share|improve this answer
"It still stores the bits as ints ?" Why isn't that boolean ? – Pam Dec 20 '12 at 1:27
Because boolean is not a real value in a computer architecture. It is just a high level language abstraction for convenience. Every boolean must still be stored and operated on as an int in memory or in a register. – Cris Stringfellow Dec 20 '12 at 1:28
Okay. I guess that wouldn't be too hard. Sounds cool. But if you like clean looking code, I find the C# function names and variable names too long. I like python and ruby for clean tidy code. But in terms of logic there's not really anything you need to change in your code. If you want to get rid of the division, you could use bitshifts and ANDs to extract the bits. – Cris Stringfellow Dec 20 '12 at 1:46
Hi Pam, yep so to get the least significant bit, just use logical AND of the number and 1. If the lsb is 1 the result will be 1. If the lsb is 0 the result will be 0. Then you can use a right shift of 1 place to 'divide by 2'. :). Yes I like your plan. Keep it high level, and then optimize further in low level. Very good. – Cris Stringfellow Dec 20 '12 at 1:57

To keep it simple, use built-in constructors and conversion methods:

public BitArray BigintegerToBitArray(BigInteger big)
{
    return new BitArray(big.ToByteArray());
}

And the way back:

public BigInteger BitArrayToBigintegerValue(BitArray bits)
{
    byte[] bytes= new byte[bits.Length / 8];
    bits.CopyTo(bytes, 0);
    return new BigInteger(bytes);
}

Just be aware that the first method will add padding zeros to the returned BitArray making its length a multiple of 8, and the second method expects a BitArray input whose length is a multiple of 8 (nothing to worry about if you use both methods in conjunction).

share|improve this answer
I tested your first function in my SimpleTest() but it seems not to work. The results i get is: 1234235612312312311 1110111110011000110000001001000000000011010001110000010010001000 17264760896287605896 – Pam Dec 20 '12 at 1:29
Also, using the second function in place of mine gives back a wrong biginteger. (There must be something to be fixed) : 1234235612312312311 1000100100000111000101100000000001001000000110001100111110111 2158095112035950737 – Pam Dec 20 '12 at 1:39
@Pam: The method I posted is correct, it is just that you are using big-endian notation (ABCD) and I used little-endian (DCBA). – Thomas C. G. de Vilhena Dec 20 '12 at 21:36
Endianness has to do with order of bytes. Here we have a unique stream of bits. – Pam Dec 20 '12 at 23:28
@Pam: Endianness is not limited to byte ordering. From Wikipedia: In computing, the term endian or endianness refers to the ordering of individually addressable sub-components within the representation of a larger data item as stored in external memory (or, sometimes, as sent on a serial connection). Each sub-component in the representation has a unique degree of significance, like the place value of digits in a decimal number. These sub-components are typically 16-, 32- or 64-bit words, 8-bit bytes, or even bits. – Thomas C. G. de Vilhena Dec 20 '12 at 23:41
show 2 more comments

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