Numerical inversion algorithm and inversion algorithm

Source: Internet
Author: User

Numerical inversion algorithm and inversion algorithm

I encountered an algorithm question during the interview today and asked to put a number upside down. At that time, I had a slight flaw in my answers on paper. I came back and made some special improvements. I have already passed the debugging, I hope to provide a little help to the interviewees in the future. The following code is attached:

Public class NumberInversion {public static void main (String [] args) {int num = 123456; char [] nums = String. valueOf (num ). toCharArray (); for (int I = 0; I <nums. length/2; I ++) {if (I! = Nums. length-1-i) {char temp = nums [I]; nums [I] = nums [nums. the length-1-i]; nums [nums. length-1-i] = temp ;}for (char str: nums) {System. out. print (str );}}}

 

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.