A simple sort of problem

Source: Internet
Author: User

1. First define an interface

Package Temp.test;public interface Intcompare {public int compare (int a, int b);}


2. Define two interface implementation classes, one sequence, one decrement

Add Order:

Package Temp.test;public class Increaseorder implements intcompare{@Overridepublic int compare (int a, int b) {//TODO Auto -generated method Stubif (a>b) {return-1;} else if (a<b) {return 1;} Else{return 0;}}}



Descending:

Package Temp.test;public class Decreaseorder implements intcompare{@Overridepublic int compare (int a, int b) {//TODO Auto -generated method Stubif (a>b) {return 1;} else if (a<b) {return-1;} Else{return 0;}}}






3. Finally write a sort of method


Package Temp.test;public class Sortnumber {public static void Sortnumber (int array[],intcompare Compare) {if (array!=null {for (int i=1;i<array.length;i++) {int Temp=array[i];int j=i;if (Compare.compare (array[j-1], temp) ==-1) {while (j >=1&&compare.compare (array[j-1], temp) ==-1) {array[j]=array[j-1];j--;}} array[j]=temp;}}} public static void Main (String args[]) {int Array1[]={1,2,3,4,5};int array2[]={1,2,3,4,5};sortnumber (array1, new Increaseorder ()); for (int item:array1) {System.out.print (item);} Sortnumber (Array2, New Decreaseorder ()); for (int item:array2) {System.out.print (item);}}}


4. Test results

1234554321

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

A simple sort of problem

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.