405. Convert a Number to Hexadecimal
Posted 高数考了59
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了405. Convert a Number to Hexadecimal相关的知识,希望对你有一定的参考价值。
1 static int wing=[]() 2 { 3 std::ios::sync_with_stdio(false); 4 cin.tie(NULL); 5 return 0; 6 }(); 7 8 class Solution 9 { 10 public: 11 string toHex(int num) 12 { 13 const string Hex="0123456789abcdef"; 14 if(num==0) 15 return "0"; 16 string res; 17 int count=0; 18 while(num&&count++<8) 19 { 20 res=Hex[num&0xf]+res; 21 num>>=4; 22 } 23 return res; 24 } 25 };
四位四位地转换,通过num&0xf,把最右边四位摘下来,再对应出字符串中的字符,加至结果字符串左侧。
以上是关于405. Convert a Number to Hexadecimal的主要内容,如果未能解决你的问题,请参考以下文章
38. leetcode 405. Convert a Number to Hexadecimal
LeetCode_405. Convert a Number to Hexadecimal
leetcode 405. Convert a Number to Hexadecimal
[leetcode-405-Convert a Number to Hexadecimal]