Bubble sort-java

Source: Internet
Author: User

Sort-bubble sort

Basic idea: start at one end, compare the adjacent two elements, and find that the reverse is exchange. Here, you'll compare adjacent elements one by one, from backward forward (top to bottom).

Average Time: O (N2)

Best case: O (N)

Worst case scenario: O (n2) (reverse)

Auxiliary Space: O (1)

Stability: Stable

applicable scenario:N Compare hours

Java implementations:

1      Public Static voidBubblesort (int[] list) {2 3          for(inti = 0; i < list.length; i++) {4              for(intj = 1; J < List.length-i; J + +) {5                 if(List[j] < list[j-1]) {6                     inttemp =List[j];7LIST[J] = list[j-1];8LIST[J-1] =temp;9                 }Ten             } One         } A}

Bubble sort-java

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.