标签:
1 public int titleToNumber(String s) { 2 if(s.length()==0) return 0; 3 int res=0; 4 for(int i=0;i<s.length();i++) 5 { 6 res+=(s.charAt(i)-‘A‘+1)*Math.pow(26, s.length()-i-1); 7 } 8 return res; 9 }
标签:
原文地址:http://www.cnblogs.com/sweetculiji/p/4224917.html