如何将大整数字符串转换为二进制?

时间:2015-02-26 00:16:54

标签: java string binary data-conversion

[EDITED]

如果已经在另一个帖子中回答了这个问题,请道歉。我在最近的一次采访中被问到这个问题。给定一大串整数(> 64位),比如“163878712638127812737637876347236482”,你会如何将其转换为二进制?这应该在不使用二进制相关的Java API或库的情况下完成。

3 个答案:

答案 0 :(得分:3)

从字符串创建BigInteger并致电toByteArray

答案 1 :(得分:0)

布雷特的方法应该有效。 但是,如果您不允许使用任何外部库,则可以将该字符串视为数字数组并对其执行长除法。所以你将数字重复2,直到你得到0或1。 您可能必须编写自己的方法来对数字数组进行除法(处理剩余数据和余数),但它应该具有相当好的运行时间。

以下是一个例子: 假设你有字符串163878712638127812737637876347236482。 将其转换为一个int数组(如果内存是一个问题,则为short)。 执行长除2,将结果保存在单独的数组中并跟踪余数:

int[] answer = new int[input.length]; //create the answer array
String binary = "";
public void convert(input, answer){
    for(int i=input.length-1;i<=0;i--) //you want to start from the left end
    {
        int temp = input[i]/2; //int division, disregard decimal.
        answer[i] = temp;
        int remainder = input[i] - temp*2; //will be 1 or 0, carry over to the next digit
        if(i>0) //check if we are not at the last digit
            input[i-1] += 10*remainder;
        else
            binary = remainder+binary; //add new bit to the left of the binary
    }
    if(answer_is_smaller_than_2) //check if we have 0 or 1 left, maybe just go through the answer array
       binary = answer[0]+binary;// add the last digit to binary string. It is generally ok to have a 0 in the beginning, but you can easily do a check and remove the 0
    else convert(answer, new int[answer.length]); //keep dividing

}

很抱歉,递归不是很好。我是在跑步时写的。 有关将十进制转换为二进制的更多信息: http://www.wikihow.com/Convert-from-Decimal-to-Binary 希望这会有所帮助:)

答案 2 :(得分:0)

我开始考虑这个问题,最后我的解决方案。我能够验证10位长数字字符串的输出,但不能验证程序中使用的字符串。如果有人可以验证并告诉我解决方案是否正确,那就太棒了。此外,解决方案未经优化,因此请随时建议更改:

public class BinaryString {
    String finArr = "";

    public static void main(String[] args) {

        String num = "37489237892374892734872398479827498238932787";
        BinaryString bs = new BinaryString();
        bs.getBinaryValue(num);
    }

    void getBinaryValue(String num) {

        String quo = getBin(num);

        if (!quo.equals("1")) {
            getBinaryValue(quo);
        } else {
            finArr = quo + finArr;
            System.out.println(" Final Binary Value=" + finArr);
            return;
        }
    }

    String getBin(String num) {

        int[] numArr = new int[num.length()];
        for (int i = 0; i < num.length(); i++) {
            numArr[i] = Character.getNumericValue(num.charAt(i));
        }
        int p = 0;
        String quo = "";
        int rem = numArr[0];

        for (int i = 0; i < numArr.length; i++) {

            p = rem / 2;
            if (p != 0) {
                quo = quo + p;
            } else if (p == 0 && i > 0) {
                quo = quo + p;
            }

            if ((i + 1) != numArr.length) {
                rem = numArr[i] % 2 * 10 + numArr[i + 1];
            } else {
                rem = rem % 2;
                break;
            }

        }

        finArr = Integer.toString(rem) + finArr;
        return quo;

    }

}

输出:

最终二进制值= 1101011100101101011110111111010001110101100001011011011110010001000101111111100101111101100001010010001101100101101001110011101101111011100110011