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

I am trying to solve a problem that involves basically implementing a logical AND between the input parameter.

The complexity of the problem involves the size of the input parameters. To give a high level overview, I am trying to implement the logic similar to

100 & 100 == 100
001 & 010 == 0
001 & 100 == 0
.....

The complexity is that some of the input parameters can be 400 bits long. Its not a true binary number representation. It's more of a positional representation. The same input can be represented as

100 = x1; (or) x100
011 = x2,3; (or) x011
001.......11 = x3,......450,451;

So basically "x" is just a prefix with the value for it. This is an ACL system designed a long time ago and I am trying to implement a Java version for it.

I couldn't find a data type in Java that could be used to represent a binary representation that is as huge as having 400 bits. I can also use the decimal representation [ie., x2,3] and solve it too, but I couldn't think of way other than looping through the entire number range and comparing it with the other input parameter. Both input parameters could be normalized to the same representation format [ie., binary or decimal].

Any suggestions (or) help on how I can solve this problem?

share|improve this question
6  
Isn't that a bitwise AND, not a logical AND? – Mark Peters Feb 8 '11 at 16:42
Yes, thats correct. its not a logical AND and its a bitwise AND. my bad. – karthik Feb 9 '11 at 16:24

3 Answers

up vote 18 down vote accepted

You could use a BitSet. It has support for bitwise and-operations and should handle 400 bits quite well.

Here is an example:

BitSet bs1 = new BitSet();
bs1.set(2);
bs1.set(5);
bs1.set(7);
bs1.set(8);

BitSet bs2 = new BitSet();
bs2.set(2);
bs2.set(7);
bs2.set(9);

bs1.and(bs2);

// Prints {2, 7}
System.out.println(bs1);

To parse a x110101 string, you could do something like

String acl = "x110101";

BitSet bs1 = new BitSet();
for (int i = 1; i < acl.length(); i++)
    if (acl.charAt(i) == '1')
        bs1.set(i);

If you still don't like that approach, you could use a Set<Integer> containing the indecies of the ones. To figure out the "and" between two such sets, you simply do set1.retainAll(set2).

Here is an example:

Set<Integer> bs1 = new HashSet<Integer>();
bs1.add(2);
bs1.add(5);
bs1.add(7);
bs1.add(8);

Set<Integer> bs2 = new HashSet<Integer>();
bs2.add(2);
bs2.add(7);
bs2.add(9);

bs1.retainAll(bs2);

// Prints [2, 7]
System.out.println(bs1);
share|improve this answer
1  
I have used BitSet with 1 million bits and it performs quite well. ;) – Peter Lawrey Feb 8 '11 at 16:45
I'd lean towards the suggested BitSet implementation. MUCH faster and more memory efficient than Set<Integer>. It uses the processor to do bitwise operations as opposed to using the Set class. – rfeak Feb 8 '11 at 17:05
Yes, I agree. I just wanted to mention one obvious alternative. – aioobe Feb 8 '11 at 17:10
Perfect answer aioobe. thanks for the quick suggestion. Performance was a key element to solving the problem. I forgot to mention that but your answer & Peter's assurance has solved that for me. – karthik Feb 8 '11 at 19:22

java.util.BitSet.

share|improve this answer

a BigInteger should also work:

  • new BigInteger(binaryString, 2) should parse the input correctly
  • BigInteger implements "and"
  • use testBit(n) to access the bits
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.