Adjust array order is odd digits before even number

Source: Internet
Author: User

Title: Enter an array of integers to implement a function to adjust the order of the numbers in the array, so that all the odd digits are in the first half of the array, all the even digits are located in the second half of the array, and the relative positions of the odd and odd, even and even are guaranteed.

Idea: Build an array, sweep both sides, first fill in the odd number, the second time to fill in even, then the original array cover ....

  Public voidReorderarray (int[] Array) {              int[] res=New int[Array.Length]; intIndex=0;  for(inti=0;i<array.length;i++){            if(!isodd (Array[i])) {Res[index]=Array[i]; Index++; }        }         for(inti=0;i<array.length;i++){            if(IsOdd (Array[i])) {Res[index]=Array[i]; Index++; }        }        for(inti=0;i<array.length;i++) {Array[i]=Res[i]; }    }     Public BooleanIsOdd (intNumber ) {        if(number%2==0)            return true; Else return false; }

Adjust array order is odd digits before even number

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.