Cracking the coding interview--Q5.2

1431 단어
제목
원문:
Given a (decimal - e.g. 3.72) number that is passed in as a string, print the binary representation. If the number can not be represented accurately in binary, print “ERROR”
번역문:
문자 형식에 표시된 소수점을 2진법으로 인쇄합니다.만약 이 수가 2진법으로 정확하게 표시할 수 없다면, "ERROR"를 출력합니다
해답
정수 부분은 2를 제외한 방법에 따라 구하거나 끊임없이 1과 위치를 나눈 다음에 2를 나누면 된다.소수 부분은 2와 1을 곱한 다음 소수 부분을 2와 1을 곱한 다음 비교한다... 얻은 값의 정수 부분은 1이고, 2진 값은 1이고, 0이면 0이며, 이 조작을 계속하면 소수 부분이 0으로 변할 수 있다면 2진법으로 정확하게 표시할 수 있고, 그렇지 않으면 유한한 비트 32위를 설정할 수 있으며, 32위를 초과하면 정확하게 표시할 수 없다고 인정한다.
코드는 다음과 같습니다.
class Q5_2{
	public static void print_binary(String numstr){
		String intStr="",decimalStr="";
		String[] vals=numstr.split("\\.");
		int intPart=Integer.parseInt(vals[0]);
		float decimalPart=Float.parseFloat("."+vals[1]);
		while(intPart>0){
			if((intPart&1)==1){
				intStr="1"+intStr;
			}else{
				intStr="0"+intStr;
			}
			intPart>>=1;
		}
		while(decimalPart>0){
			if(decimalStr.length()>32){
				System.out.println("ERROR");
			}
			decimalPart*=2;
			if(decimalPart>=1){
				decimalStr="1"+decimalStr;
				decimalPart-=1;
			}else{
				decimalStr="0"+decimalStr;
			}
		}
		System.out.println(intStr+"."+decimalStr);
	}
	public static void main(String[] args){
		print_binary("32.125");
	}
}

---EOF---

좋은 웹페이지 즐겨찾기