Java Bubble Sort Method upgrade version

Source: Internet
Author: User

/*
* Upgraded version of bubble sort, can compare integer array, decimal type array
*
* */
public static <t extends comparable<t>> void Bubblegeneric (t[] arr) {

T temp;
for (int i = 0; i < arr.length-1; i++) {
for (int j = 0; J < arr.length-1-I; j + +) {
if (Arr[j + 1].compareto (Arr[i]) <0) {

temp = arr[j + 1];
Arr[j + 1] = Arr[j];
ARR[J] = temp;
}
}
}
System.out.println ("Sorted array is:" + arrays.tostring (arr));

}

Method invocation:

Integer arrint[] = {10, 2, 6, 9, 8}; An array needs to be defined as a reference type, and a generic parameter must pass a reference type.
Double arrddouble[] = {11.0,45.2,23.0,46.0,89.6};

Bubblegeneric (arrddouble);
Bubblegeneric (Arrint);

Java Bubble Sort Method upgrade version

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.