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 to convert binary string to integer. I can use & | << and >>. No exponentiation, no embedded functions.

share|improve this question
6  
Is this a homework question? If not, why are you restricted to this method? Can you post an example of the input and expected output? – Will Hughes Jan 16 '11 at 9:09
6  
This is not a forum for solving homework for you. If you try something and it doesn't work, then post your code and we'll be glad to help you. – Ilya Kogan Jan 16 '11 at 9:11
Yes, it's homework. I have no idea how to do this. – 123 Jan 16 '11 at 9:12
Do you know how the operators work? What they do? If not: find that out and you will probably find the solution by yourself. If not: improve your question... – WarrenFaith Jan 16 '11 at 9:16
Yes, i known. I known how to convert int to bin string, but how to make binary operators on string? – 123 Jan 16 '11 at 9:19
show 1 more comment

3 Answers

Initialize a value to 0

Traverse the string from left to right as follows:
Shift the value one bit to the left - <<1
If the character is '1' add one - |0x1

share|improve this answer
1  
Perhaps read the input string from right to left :-) – user166390 Jan 16 '11 at 9:49
1  
@pst: Left to right is fine as long as you shift the result value to the left each time. – thkala Jan 16 '11 at 10:20

try the following. As string is built in, its not possible to use it without using built in methods. ;)

String text =
long l = 0;
for(byte b: text.getBytes()) l = (l << 1) | (b & 1);
share|improve this answer
1  
Nice... taking advantage of the fact that '0' = 0x30 and '1' = 0x31 in ASCII. I'd prefer an explicit condition, but +1 anyway. – thkala Jan 16 '11 at 10:21
@thkala, I would prefer proper input validation, but then again I would use the builtin methods do this. ;) – Peter Lawrey Jan 16 '11 at 10:28
This code depends on the default encoding on the JVM and will fail for example on UTF-16 default encoding systems. – Michael Konietzka Jan 16 '11 at 12:31
@Michael, Can you give an example of what you are talking about? – Peter Lawrey Jan 16 '11 at 16:39
I think he's trying to say you should use getBytes("UTF-8") since getBytes() will use the default encoding, which might use a different encoding for '0' and '1'. EBCDIC, for example. – bkail Jan 16 '11 at 17:09
show 2 more comments

Since we are still at it, here's my C-based solution:

#include <stdio.h>

int main (int argc, char **argv)
{
        long long unsigned int r = 0;

        int i;

        if (argc < 2)
            return 1;

        for (i = 0; argv[1][i] != 0; ++i)
                r = (r << 1) | ((argv[1][i] == '1')?1:0);

        printf("%llu\n", r);

        return 0;
}

Since it's homework, I intentionally leave the Java translation to the reader. It shouldn't be too hard, especially with the answer by Peter Lawrey in mind.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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