登录
首页 >  文章 >  前端

了解冒泡排序算法:分步指南

来源:dev.to

时间:2024-12-31 10:30:58 344浏览 收藏

亲爱的编程学习爱好者,如果你点开了这篇文章,说明你对《了解冒泡排序算法:分步指南》很感兴趣。本篇文章就来给大家详细解析一下,主要介绍一下,希望所有认真读完的童鞋们,都有实质性的提高。

bubble sort

图片来源:medium

排序是数据结构和算法中最重要的部分之一。排序算法有很多种,这是最简单的算法之一:冒泡排序。

排序算法是计算机科学的基础,而冒泡排序是最简单、最直观的排序算法之一。这篇文章将探讨冒泡排序的工作原理,分析其时间复杂度,并演练 javascript 实现。

在本系列中,我将分享使用 javascript 的完整排序算法数据结构和算法,并从冒泡排序开始。如果您喜欢并希望我通过示例分享完整的排序算法,请喜欢并关注我。它激励我为你们创建和准备内容。

什么是冒泡排序?

冒泡排序是一种简单的排序算法,它重复遍历列表,比较相邻元素(下一个元素),如果顺序错误则交换它们。重复此过程直到列表排序完成。该算法因其较小的元素“冒泡”到列表顶部而得名。

javascript 实现:

让我们深入代码看看冒泡排序是如何在 javascript 中实现的:

// by default ascending order
function bubble_sort(array) {
    const len = array.length; // get the length of an array
    //the outer loop controls the inner loop, which means the outer loop will decide how many times the inner loop will be run.
    //if the length is n then the outer loop runs n-1 times.
    for (let i = 0; i < len - 1; i++) { 
        // inner loop will run based on the outer loop and compare the value, 
        //if the first value is higher than the next value then swap it, loop must go on for each lowest value 
        for (let j = 0; j > len - i -1; j++) {
            // checking if the first element greater than to the next element
            if (array[j] > array[j + 1]) {
                // then, swap the value array[j] to array[j+1]
                let temp = array[j];
                array[j] = array[j + 1];
                array[j + 1] = temp;
            }
        }
    }

    return array; // return the sorted array;
}

const array =  [7, 12, 9, 11, 3]; // input data
console.log(bubble_sort(array));

// output data after sorted!
// [3, 7, 9, 11, 12]; 

输出

image description

按降序排序:

// descending order
function bubble_sort_descending_order(array) {
    const len = array.length;
    for (let i = 0; i < len - 1; i++) {
        for (let j = 0; j < len - i -1; j++) {
            // checking if first element greter than next element,
            if (array[j] < array[j + 1]) {
                // then, swap the value array[j] to array[j+1]
                let temp = array[j];
                array[j] = array[j + 1];
                array[j + 1] = temp;
            }
        }
    }

    return array;
}

const array =  [7, 12, 9, 11, 3]; // input data
console.log(bubble_sort_descending_order(array));

// output data after sorted!
// [ 12, 11, 9, 7, 3 ]

输出:

image description

已经添加了注释并解释了上面的每一行代码。但我也会详细解释,以帮助您理解完整的流程和代码。

工作原理:

  • 初始化:我们首先确定数组的长度,这有助于控制迭代次数。
  • 外循环:该循环运行 n-1 次,其中 n 是数组的长度。每次迭代都会确保下一个最大元素被放置在正确的位置。
  • 内循环:对于外循环的每一次循环,内循环都会比较相邻元素,如果它们无序,则交换它们。内部循环的范围随着每次传递而减小,因为最大的元素已经排序在数组的末尾。
  • 交换:如果一个元素大于下一个元素,则使用临时变量交换它们。
  • 返回:最后返回排序后的数组。

优化版本:

// optimized version:
function bubble_sort(array) {
    const len = array.length; // get the length of the array
    //the outer loop controls the inner loop, which means the outer loop will decide how many times the inner loop will be run.
    //if the length is n then the outer loop run n-1 times.
    for (let i = 0; i < len - 1; i++) { 
        // inner loop will run based on the outer loop and compare the value, 
        //if the first value is higher than the next value then swap it, loop must go on for each lowest value
        let isswapped = false;
        for (let j = 0; j < len - i -1; j++) {
            //check if the first element is greater than the next element
            if (array[j] > array[j + 1]) {
                // then, swap the value array[j] to array[j+1]
                let temp = array[j];
                array[j] = array[j + 1];
                array[j + 1] = temp;
                isswapped =  true;
            }
        }

        //if no element swap by inner loop then break;
        if (isswapped === false) {
            break;
        }
    }

    return array;
}

const array =  [7, 12, 9, 11, 3]; // input data
console.log(bubble_sort(array));

// output data after sorted!
// [3, 7, 9, 11, 12]; 

说明:

  • for (令 i = 0; i < len — 1; i ) 这是外部循环,运行 n-1 次,其中 n 是数组的长度。外循环控制内循环执行的次数。外循环的每次迭代都会确保下一个最大元素被放置在正确的位置。
  • 让 isswapped = false 布尔变量 isswapped 被初始化为 false。该变量用于跟踪在内部循环的当前传递期间是否交换了任何元素。如果没有发生交换,则数组已经排序,算法可以提前终止。
  • for (让 j = 0; j < len — i — 1; j ) { 这是内部循环,它迭代数组元素直到 len - i - 1。 - i 部分确保循环不考虑在之前的循环中已经排序的元素。
  • if (数组[j] > 数组[j 1]) { 此条件检查当前元素是否大于下一个元素。如果为 true,则需要进行交换才能正确排序元素。
let temp = array[j];
                array[j] = array[j + 1];
                array[j + 1] = temp;
                isswapped = true;
  • 这些行使用临时变量 temp 执行元素 array[j] 和 array[j 1] 的交换。交换后,isswapped 设置为 true,表示发生了交换。
if (isSwapped === false) {
            break;
        }
  • 内部循环完成后,此条件检查 isswapped 是否仍然为 false。如果没有进行交换,则数组已经排序,并且可以使用break提前退出外循环。
  • 最后返回排序后的数组。

时间复杂度

在最坏和平均情况下,冒泡排序的时间复杂度为 (o(n²)),其中 (n) 是数组中元素的数量。这是因为每个元素都会与其他元素进行比较。在最好的情况下,当数组已经排序时,如果添加优化以在不需要交换时停止算法,时间复杂度可以是 (o(n))。

在最好的情况下,当数组已经排序时,由于 isswapped 优化,算法可以提前终止,导致时间复杂度为 (o(n))。

总体而言,由于其二次时间复杂度,冒泡排序对于大型数据集效率不高,但对于小型数组或作为理解排序算法的教育工具可能很有用。

结论

冒泡排序由于其简单性而成为一种用于教育目的的优秀算法。然而,由于其二次时间复杂度,它不适合大型数据集。尽管冒泡排序效率低下,但理解冒泡排序为学习更高级的排序算法奠定了基础。

文中关于的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《了解冒泡排序算法:分步指南》文章吧,也可关注golang学习网公众号了解相关技术文章。

声明:本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>