Java排序演算法(一):冒泡排序

來源:互聯網
上載者:User

標籤:

[基本思想]

冒泡排序是一種交換排序,它的基本思想是兩兩比較相鄰記錄的關鍵字,如果反序則交換,直到沒有反序的記錄為止。


[Java實現]

public class BubbleSort {public static void main(String[] args) {int[] arr = { 49, 38, 65, 97, 76, 13, 27, 49, 78, 34, 12, 64, 1, 8 };System.out.println("排序之前:");for (int i = 0; i < arr.length; i++) {System.out.print(arr[i] + " ");}bubbleSort(arr);System.out.println();System.out.println("排序之後:");for (int i = 0; i < arr.length; i++) {System.out.print(arr[i] + " ");}}/** * 冒泡排序 */private static void bubbleSort(int[] arr) {for (int i = 0; i < arr.length; i++) {for (int j = 0; j < arr.length - 1 - i; j++) {if (arr[j] > arr[j + 1]) { // 比較相鄰元素swap(arr, j); // 資料交換}}}}/** * 資料交換 */private static void swap(int[] arr, int j) {int tmp = arr[j]; // 資料交換arr[j] = arr[j + 1];arr[j + 1] = tmp;}}
[演算法最佳化]

假設待排序列為:{2, 1, 3, 4, 5, 6, 7, 8, 9} 交換了2和1後,此時序列已經有序,但是演算法仍然會按部就班的迴圈很多次,儘管沒有需要交換的資料。

當子迴圈整個迴圈了一邊,沒有可以交換的資料,說明數列已經有序,就不用再進行迴圈判斷了。

我們可以加一個標記欄位來改進演算法。

public class BubbleSort2 {public static void main(String[] args) {int[] arr = { 2, 1, 3, 4, 5, 6, 7, 8, 9 };System.out.println("排序之前:");for (int i = 0; i < arr.length; i++) {System.out.print(arr[i] + " ");}bubbleSort(arr);System.out.println();System.out.println("排序之後:");for (int i = 0; i < arr.length; i++) {System.out.print(arr[i] + " ");}}/** * 冒泡排序 */private static void bubbleSort(int[] arr) {boolean flag = true;for (int i = 0; i < arr.length && flag; i++) {flag = false;for (int j = 0; j < arr.length - 1 - i; j++) {if (arr[j] > arr[j + 1]) {swap(arr, j);flag = true;}}}}/** * 資料交換 */private static void swap(int[] arr, int j) {int tmp = arr[j];arr[j] = arr[j + 1];arr[j + 1] = tmp;}}



Java排序演算法(一):冒泡排序

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.