google的一道JAVA面试题!!![1]

[入库:2006年2月23日] [更新:2007年3月24日]

本文简介:

java代码:  

  1. Consider a function which, for a given whole number n, returns the number of ones required when writing out all numbers between 0 and n. 
  2. For example, f(13)=6. Notice that f(1)=1. What is the next largest n such that f(n)=n? 


翻译过来大体是这样: 
有一个整数n,写一个函数f(n),返回0到n之间出现的"1"的个数。比如f(13)=6,现在f(1)=1,问下一个最大的f(n)=n的n是什么?

答案一:

  1. int getCountOfNumber(int number){ 
  2.                 int count=0; 
  3.                 int length=("" + number).length(); 
  4.                 
  5.                 for(int i=0;i<=length;i++){ 
  6.                         int num=number%10; 
  7.                         number=(number-num)/10; 
  8.                         
  9.                         if(num*num==1) count++; 
  10.                 } 
  11.                 
  12.                 return count; 
  13.         }


计算到:199981 用了203
不过只计算到上边的数值就没多大意思,看看这个:
这个是4000000000以内的结果!:
f(0) = 0 
f(1) = 1 
f(199981) = 199981 
f(199982) = 199982 
f(199983) = 199983 
f(199984) = 199984 
f(199985) = 199985 
f(199986) = 199986 
f(199987) = 199987 
f(199988) = 199988 
f(199989) = 199989 
f(199990) = 199990 
f(200000) = 200000 
f(200001) = 200001 
f(1599981) = 1599981 
f(1599982) = 1599982 
f(1599983) = 1599983 
f(1599984) = 1599984 
f(1599985) = 1599985 
f(1599986) = 1599986 
f(1599987) = 1599987 
f(1599988) = 1599988 
f(1599989) = 1599989 
f(1599990) = 1599990 
f(2600000) = 2600000 
f(2600001) = 2600001 
f(13199998) = 13199998 
f(35000000) = 35000000 
f(35000001) = 35000001 
f(35199981) = 35199981 
f(35199982) = 35199982 
f(35199983) = 35199983 
f(35199984) = 35199984 
f(35199985) = 35199985 
f(35199986) = 35199986 
f(35199987) = 35199987 
f(35199988) = 35199988 
f(35199989) = 35199989 
f(35199990) = 35199990 
f(35200000) = 35200000 
f(35200001) = 35200001 
f(117463825) = 117463825 
f(500000000) = 500000000 
f(500000001) = 500000001 
f(500199981) = 500199981 
f(500199982) = 500199982 
f(500199983) = 500199983 
f(50019998

本文关键:google的一道JAVA面试题!!!
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top