这是Find an integer not between 40 given ones因为它是一个旧线程我创建了一个新问题的解决方案的后续。我写了一个 bitset 实现,假设数字在 java MAX_VALUE 和 MIN_VALUE 整数之间。这是代码
void bitsetWay() throws FileNotFoundException
{
String path=System.getProperty("user.dir")+"/src/com/sjcode/";
Scanner in = new Scanner(new FileReader(path+"a.txt"));
BitSet btpos= new BitSet(Integer.MAX_VALUE);
BitSet btneg= new BitSet(Integer.MAX_VALUE);
while(in.hasNextInt()){
int n = in.nextInt();
System.out.println(n);
if (n<0)
{
btneg.set(-1*n);
}
else
{
btpos.set(n);
}
}
System.out.println(btpos.nextClearBit(0) + " : " + btpos);
//ignore btneg[0] since we treat 0 as +ve
System.out.println(btneg.nextClearBit(1) + " : " + btneg);
}
这适用于 a.txt 中的此输入
1
2
2147483583
-2
-1
0
- 输出:
3 : {0, 1, 2, 2147483583}
3 : {1, 2}
-- 但是当我给出一个大于 2147483583 的数字时,它似乎会环绕并设置位 0!我错过了什么吗?是的,打印 Integer.MAX_VALUE 会打印 2147483647!
输入:
1
2
2147483584
-2
-1
0
输出:
0 : {0, 1, 2, 2147483584}
3 : {1, 2}