The offer--adjusts the array order so that the odd digits are preceded by even numbers.

Source: Internet
Author: User

Title Description

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

Look at the code:

 Public classSolution { Public Static void Reorderarray(int[] arr) {intI,j,target; for(i =1; i< arr.length; i++) {target = Arr[i];if(target%2!=0) {//Odd                intTemp for(j = i; j >0; j--) {if(arr[j-1]%2==0) {temp = Arr[j]; ARR[J] = arr[j-1]; arr[j-1] = temp; }                }            }        }    }}

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

The offer--adjusts the array order so that the odd digits are preceded by even numbers.

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.