ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

LeetCode405. Convert a Number to Hexadecimal

2026/9/13 13:53:47 拓冰建站 浏览量
LeetCode405. 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:

Input: num = 26
Output: “1a”
Example 2:

Input: num = -1
Output: “ffffffff”

Constraints:

-231 <= num <= 231 - 1

二、题解

class Solution {
public:string toHex(int num) {if(num == 0) return "0";string res = "";while(num != 0){int u = num & 15;char c = u + '0';if(u >= 10) c = (u - 10 + 'a');res += c;//逻辑右移num = (unsigned int)num >> 4;}reverse(res.begin(),res.end());return res;}
};