Insert new number and reorder

Source: Internet
Author: User

Title: There is an array that has been sequenced. Now enter a number that requires it to be inserted into the array as it was originally.

 Public Static voidMain (string[] args) {int[] arr =New int[9]; //Initialize the number of length-1Random random =NewRandom ();  for(inti = 0; i < arr.length-1; i++) {            inttemp = random.nextint (100); Arr[i]=temp; }                //Sortsort (arr); //Print ResultsSystem.out.println ("Sort before inserting");  for(inti = 0; i < arr.length; i++) {System.out.print (Arr[i]+ "\ T"); } System.out.println (""); //Insert a numberScanner Scanner =NewScanner (system.in); arr[0] =Scanner.nextint (); //Print the results after insertingsort (arr); System.out.println ("Sort after insert");  for(inti = 0; i < arr.length; i++) {System.out.print (Arr[i]+ "\ T"); } System.out.println (""); }    //Sort     Public Static voidSortint[] arr) {        //Arrays.sort (arr);         for(inti = 0; i < arr.length; i++) {             for(intj = i+1; J < Arr.length; J + +) {                if(arr[i]>Arr[j]) {                    inttemp =Arr[i]; Arr[i]=Arr[j]; ARR[J]=temp; }            }        }    }

Source

Insert new number and reorder

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.