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 0s. 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:
Input:
26
Output:
"1a"
Example 2:
Input:
-1
Output:
"ffffffff"
把一个十进制数转换成用字符串表示的16进制字符串,不需要

本文介绍了如何通过算法将整数转换为十六进制,特别是在处理负数时采用两补码方法。题目要求不使用库函数直接转换,并确保十六进制字符串不包含额外前导0,且所有字母为小写。示例展示了正数和负数的转换过程。
订阅专栏 解锁全文
402

被折叠的 条评论
为什么被折叠?



