【leetcode】Excel Sheet Column Title & Excel Sheet Column Number


两道相关联的题目,一个是将数字转换为26进制,一个是将26进制表示方法转换为10进制

第一次觉得java好慢。


public class Solution {
    public String convertToTitle(int n) {
        StringBuilder sb = new StringBuilder();		
		while (n > 0) {			
			int apd = n % 26;			
			char c;			
			if (apd == 0) {				
				c = 'Z';				
				n = n / 26 - 1;			
				} else 
				{				
					c = (char) (apd + 'A' - 1);				
					n = n / 26;			
					}			
			sb.append(c);		
			}		
		return sb.reverse().toString();	
    }
}


public class Solution {
    public int titleToNumber(String s) {
        HashMap<Character, Integer> map = new HashMap<Character, Integer>();
		char c = 'A';
		for(int i=1;i<=26;++i){
			map.put(c,i);
			c += 1;
		}
		int result = 0;
	    int i = s.length()-1;
	    int t = 0;
	    while(i >= 0){
	        char curr = s.charAt(i);
	        result = result + (int) Math.pow(26, t) * map.get(curr);
	        t++;
	        i--;
	    }
		return result;
    }
}


Math.pow(底数,几次方)
如:double a=2.0;
    double b=3.0;
double c=Math.pow(a,b);
就是2的三次方是多少;
c最终为8;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值