(LeetCode OJ) Reverse Integer [7]

Source: Internet
Author: User

(LeetCode OJ) Reverse Integer [7]

Reverse Integer

My Submissions QuestionTotal Accepted: 112034 Total Submissions: 477710 Difficulty: Easy

Reverse digits of an integer.

Example1: x = 123, return 321
Example2: x =-123, return-321

Click to show spoilers.

Subscribe to see which companies asked this question

Hide Tags Math Show Similar Problems
// Think clearly: You need to first know the positive and negative numbers. // first, one digit and one digit are obtained (he is the highest digit of the new number, and the number is rounded to 10 every time ), after the number is obtained, the number is reduced by 10 times (rounded up) to repeat this operation. // The question needs to overflow and handle class Solution {public: int reverse (int x) {int sgn =-1; if (x <0) x = x * sgn; elsesgn = 1; long ans = 0; while (x) {ans * = 10; ans + = x % 10; x/= 10;} if (sgn =-1) ans * =-1; // determine if (ans> INT_MAX | ans

 

  

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.