首页 > 代码库 > convert-a-number-to-hexadecimal
convert-a-number-to-hexadecimal
https://leetcode.com/problems/convert-a-number-to-hexadecimal/// https://discuss.leetcode.com/topic/60365/simple-java-solution-with-comment/4public class Solution { public String toHex(int num) { char []cmap = {‘0‘,‘1‘,‘2‘,‘3‘,‘4‘,‘5‘,‘6‘,‘7‘,‘8‘,‘9‘,‘a‘,‘b‘,‘c‘,‘d‘,‘e‘,‘f‘}; StringBuilder sb = new StringBuilder(); do { sb.append(cmap[num & 15]); num >>>= 4; } while (num != 0); return sb.reverse().toString(); }}
注意,以上代码里面的 >>> 是无符号位移。也就是不管正数负数,左边空出来的位都是补0.
<< : 左移运算符,num << 1,相当于num乘以2
>> : 右移运算符,num >> 1,相当于num除以2
>>> : 无符号右移,忽略符号位,空位都以0补齐
而C++里面的 >> 根据编译器不同有所区别。一般而言,是带符号的,如果负数,会补1.
convert-a-number-to-hexadecimal
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。