leetcode 405 Convert a Number to Hexadecimal

Given an integer, write an algorithm to convert it to hexadecimal. For negative integer, two’s complement method is used.
Note:
- All letters in hexadecimal (
a-f
) must be in lowercase. - The hexadecimal string must not contain extra leading
0
s. If the number is zero, it is represented by a single zero character'0'
; otherwise, the first character in the hexadecimal string will not be the zero character. - The given number is guaranteed to fit within the range of a 32-bit signed integer.
- You must not use any method provided by the library which converts/formats the number to hex directly.
Example 1:
1 | Input: |
Example 2:
1 | Input: |
1 | class Solution(object): |
KeyNodes:
负数的情况比较复杂,可以考虑直接从负数转换为对应的正数的编码。
方法一:
直接在负数的基础上加上$2^{32}$
方法二:
1
2
3num = -num
num ^= 0xffffffff
num += 1
注意保存在ans之后,需要进行reverse操作
如果使用str来保存最后的结果,可以使用str[::-1]来进行reverse操作。