Convert a Number to Hexadecimal
405.Convert a Number to Hexadecimal
Given an integer num
, return a string representing its hexadecimal representation. For negative integers, two’s complement method is used.
All the letters in the answer string should be lowercase characters, and there should not be any leading zeros in the answer except for the zero itself.
Note: You are not allowed to use any built-in library method to directly solve this problem.
Example 1:
1 | Input: num = 26 |
Example 2:
1 | Input: num = -1 |
时间复杂度:O(n)
空间复杂度:O(1)
1 | class Solution { |
位运算:
时间复杂度:O(k),k是整数的十六进制数的位数
空间复杂度:O(k)
1 | class Solution { |