国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

首頁(yè) web前端 js教程 學(xué)習(xí)快速排序演算法

學(xué)習(xí)快速排序演算法

Jan 04, 2025 pm 12:11 PM

快速排序是最有效的演算法之一,它使用分治技術(shù)對(duì)陣列進(jìn)行排序。

快速排序的工作原理

快速排序的主要思想是幫助一次將一個(gè)元素移動(dòng)到未排序數(shù)組中的正確位置。這個(gè)元素稱為樞軸。

當(dāng):

時(shí),樞軸元素位於正確位置
  1. 其左側(cè)的所有元素都較小
  2. 其右側(cè)的所有元素都較大。

左邊或右邊的數(shù)字是否已排序並不重要。重要的是樞軸位於數(shù)組中的正確位置。

// examples of the pivot 23 positioned correctly in the array:
[3, 5, 6, 12, 23, 25, 24, 30]
[6, 12, 5, 3, 23, 24, 30, 25]
[3, 6, 5, 12, 23, 30, 25, 24]

所有這些都是樞軸為 23 的陣列的有效輸出。

找到樞軸的正確位置

快速排序幫助樞軸找到其在陣列中的正確位置。例如,如果樞軸位於數(shù)組的開(kāi)頭但不是最小的數(shù)字,則快速排序確定需要移動(dòng) 5 步才能為數(shù)組中的 5 個(gè)較小元素騰出空間 - 假設(shè)有 5 個(gè)這樣的元素?cái)?shù)字。

假設(shè)我們有陣列:[10, 4, 15, 6, 23, 40, 1, 17, 7, 8],10 是主元:

Learning the Quick Sort Algorithm

此時(shí)

  • 數(shù)字 10 不知道它是否處?kù)墩_的位置,也不知道它需要移動(dòng)多少步才能到達(dá)那裡??焖倥判蚴紫葘?10 與下一個(gè)索引處的值進(jìn)行比較。
  • 當(dāng)發(fā)現(xiàn) 4 較小時(shí),快速排序記錄樞軸需要向前移動(dòng)一步才能讓 4 出現(xiàn)在它之前。
  • 因此 numberOfStepsToMove 增加 1。

Learning the Quick Sort Algorithm

接下來(lái),在索引 2 處,值為 15,大於 10。由於不需要調(diào)整,快速排序保持步數(shù)不變並移至數(shù)組中的下一個(gè)元素。

Learning the Quick Sort Algorithm

在下一個(gè)索引處,值為 6,小於 10。快速排序 將步數(shù)增加到 2,因?yàn)橹髟F(xiàn)在需要為兩個(gè)較小的數(shù)字騰出空間:4 和 6 .

Learning the Quick Sort Algorithm

現(xiàn)在,6 需要與 15 交換,以保持較小的數(shù)字在陣列的左側(cè)彼此相鄰。我們根據(jù)目前索引和 numberOfStepsToMove 值交換數(shù)字。

Learning the Quick Sort Algorithm

快速排序繼續(xù)循環(huán)遍歷數(shù)組,根據(jù)小於主元的數(shù)字?jǐn)?shù)量增加 numberOfStepsToMove。這有助於確定樞軸需要移動(dòng)多遠(yuǎn)才能到達(dá)正確位置。

numberOfStepsToMove 不會(huì)改變 23 或 40,因?yàn)檫@兩個(gè)值都大於基準(zhǔn)值,且在陣列中不應(yīng)位於基準(zhǔn)值之前:

Learning the Quick Sort Algorithm

Learning the Quick Sort Algorithm

現(xiàn)在,當(dāng)快速排序循環(huán)到索引 6 處的值 1 時(shí),numberOfStepsToMove 增加到 3 並交換索引 3 處的數(shù)字:

Learning the Quick Sort Algorithm

Learning the Quick Sort Algorithm

快速排序繼續(xù)此過(guò)程,直到到達(dá)數(shù)組末尾:

Learning the Quick Sort Algorithm

Learning the Quick Sort Algorithm

Learning the Quick Sort Algorithm

Learning the Quick Sort Algorithm

Learning the Quick Sort Algorithm

現(xiàn)在我們已經(jīng)到達(dá)了數(shù)組的末尾,我們知道有 5 個(gè)數(shù)字小於 10。因此,主元 (10) 必須向前移動(dòng) 5 步到其正確位置,該位置大於所有數(shù)字前面的數(shù)字。

Learning the Quick Sort Algorithm

讓我們看看程式碼中的樣子:

// examples of the pivot 23 positioned correctly in the array:
[3, 5, 6, 12, 23, 25, 24, 30]
[6, 12, 5, 3, 23, 24, 30, 25]
[3, 6, 5, 12, 23, 30, 25, 24]

現(xiàn)在我們有了一個(gè)函數(shù)來(lái)幫助我們找到放置樞軸的位置,讓我們看看 Qucik Sort 如何將數(shù)組劃分為更小的數(shù)組,並利用 getNumberOfStepsToMove 函數(shù)來(lái)放置所有數(shù)組元素。

const getNumberOfStepsToMove = (arr, start = 0, end = arr.length - 1) => {
  let numberOfStepsToMove = start;
  // we're picking the first element in the array as the pivot
  const pivot = arr[start];

  // start checking the next elements to the pivot
  for (let i = start + 1; i <= end; i++) {
    // is the current number less than the pivot?
    if (arr[i] < pivot) {
      // yes - so w should increase numberOfStepsToMove
// or the new index of the pivot
      numberOfStepsToMove++;

      // now swap the number at the index of numberOfStepsToMove with the smaller one
      [arr[i], arr[numberOfStepsToMove]] = [arr[numberOfStepsToMove], arr[i]];
    } else {
      // what if it's greater?
      // do nothing -- we need to move on to the next number
      // to check if we have more numbers less that pivot to increase numberOfStepsToMove or not
    }
  }

  // now we know the pivot is at arr[start] and we know that it needs to move numberOfStepsToMove
  // so we swap the numbers to place the pivot number to its correct position
  [arr[start], arr[numberOfStepsToMove]] = [
    arr[numberOfStepsToMove],
    arr[start],
  ];

  return numberOfStepsToMove;
};

快速排序利用遞歸將數(shù)組有效地劃分為更小的子數(shù)組,確保透過(guò)將元素與主元進(jìn)行比較來(lái)對(duì)元素進(jìn)行排序。

function quickSort(arr, left = 0, right = arr.length - 1) {
  // pivotIndex the new index of the pivot in in the array
  // in our array example, at the first call this will be 5, because we are checking 10 as the pivot
  // on the whole array
  let pivotIndex = getNumberOfStepsToMove(arr, left, right);
}
  • 演算法遞歸地對(duì)包含小於主元的元素的左子數(shù)組進(jìn)行排序。
  • 當(dāng)子數(shù)組有一個(gè)或零個(gè)元素時(shí),遞歸停止,因?yàn)樗呀?jīng)排序。

Learning the Quick Sort Algorithm

現(xiàn)在我們需要對(duì)陣列的右邊執(zhí)行相同的過(guò)程:

// examples of the pivot 23 positioned correctly in the array:
[3, 5, 6, 12, 23, 25, 24, 30]
[6, 12, 5, 3, 23, 24, 30, 25]
[3, 6, 5, 12, 23, 30, 25, 24]

Learning the Quick Sort Algorithm

在此範(fàn)例中,右側(cè)已經(jīng)排序,但演算法不知道這一點(diǎn),如果沒(méi)有排序,它也會(huì)被排序。

以上是學(xué)習(xí)快速排序演算法的詳細(xì)內(nèi)容。更多資訊請(qǐng)關(guān)注PHP中文網(wǎng)其他相關(guān)文章!

本網(wǎng)站聲明
本文內(nèi)容由網(wǎng)友自願(yuàn)投稿,版權(quán)歸原作者所有。本站不承擔(dān)相應(yīng)的法律責(zé)任。如發(fā)現(xiàn)涉嫌抄襲或侵權(quán)的內(nèi)容,請(qǐng)聯(lián)絡(luò)admin@php.cn

熱AI工具

Undress AI Tool

Undress AI Tool

免費(fèi)脫衣圖片

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅(qū)動(dòng)的應(yīng)用程序,用於創(chuàng)建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費(fèi)的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費(fèi)的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強(qiáng)大的PHP整合開(kāi)發(fā)環(huán)境

Dreamweaver CS6

Dreamweaver CS6

視覺(jué)化網(wǎng)頁(yè)開(kāi)發(fā)工具

SublimeText3 Mac版

SublimeText3 Mac版

神級(jí)程式碼編輯軟體(SublimeText3)

Java vs. JavaScript:清除混亂 Java vs. JavaScript:清除混亂 Jun 20, 2025 am 12:27 AM

Java和JavaScript是不同的編程語(yǔ)言,各自適用於不同的應(yīng)用場(chǎng)景。 Java用於大型企業(yè)和移動(dòng)應(yīng)用開(kāi)發(fā),而JavaScript主要用於網(wǎng)頁(yè)開(kāi)發(fā)。

JavaScript評(píng)論:簡(jiǎn)短說(shuō)明 JavaScript評(píng)論:簡(jiǎn)短說(shuō)明 Jun 19, 2025 am 12:40 AM

JavascriptconcommentsenceenceEncorenceEnterential gransimenting,reading and guidingCodeeXecution.1)單inecommentsareusedforquickexplanations.2)多l(xiāng)inecommentsexplaincomplexlogicorprovideDocumentation.3)

如何在JS中與日期和時(shí)間合作? 如何在JS中與日期和時(shí)間合作? Jul 01, 2025 am 01:27 AM

JavaScript中的日期和時(shí)間處理需注意以下幾點(diǎn):1.創(chuàng)建Date對(duì)像有多種方式,推薦使用ISO格式字符串以保證兼容性;2.獲取和設(shè)置時(shí)間信息可用get和set方法,注意月份從0開(kāi)始;3.手動(dòng)格式化日期需拼接字符串,也可使用第三方庫(kù);4.處理時(shí)區(qū)問(wèn)題建議使用支持時(shí)區(qū)的庫(kù),如Luxon。掌握這些要點(diǎn)能有效避免常見(jiàn)錯(cuò)誤。

JavaScript與Java:開(kāi)發(fā)人員的全面比較 JavaScript與Java:開(kāi)發(fā)人員的全面比較 Jun 20, 2025 am 12:21 AM

JavaScriptIspreferredforredforwebdevelverment,而Javaisbetterforlarge-ScalebackendsystystemsandSandAndRoidApps.1)JavascriptexcelcelsincreatingInteractiveWebexperienceswebexperienceswithitswithitsdynamicnnamicnnamicnnamicnnamicnemicnemicnemicnemicnemicnemicnemicnemicnddommanipulation.2)

為什麼要將標(biāo)籤放在的底部? 為什麼要將標(biāo)籤放在的底部? Jul 02, 2025 am 01:22 AM

PlacingtagsatthebottomofablogpostorwebpageservespracticalpurposesforSEO,userexperience,anddesign.1.IthelpswithSEObyallowingsearchenginestoaccesskeyword-relevanttagswithoutclutteringthemaincontent.2.Itimprovesuserexperiencebykeepingthefocusonthearticl

JavaScript:探索用於高效編碼的數(shù)據(jù)類型 JavaScript:探索用於高效編碼的數(shù)據(jù)類型 Jun 20, 2025 am 12:46 AM

javascripthassevenfundaMentalDatatypes:數(shù)字,弦,布爾值,未定義,null,object和symbol.1)numberSeadUble-eaduble-ecisionFormat,forwidevaluerangesbutbecautious.2)

什麼是在DOM中冒泡和捕獲的事件? 什麼是在DOM中冒泡和捕獲的事件? Jul 02, 2025 am 01:19 AM

事件捕獲和冒泡是DOM中事件傳播的兩個(gè)階段,捕獲是從頂層向下到目標(biāo)元素,冒泡是從目標(biāo)元素向上傳播到頂層。 1.事件捕獲通過(guò)addEventListener的useCapture參數(shù)設(shè)為true實(shí)現(xiàn);2.事件冒泡是默認(rèn)行為,useCapture設(shè)為false或省略;3.可使用event.stopPropagation()阻止事件傳播;4.冒泡支持事件委託,提高動(dòng)態(tài)內(nèi)容處理效率;5.捕獲可用於提前攔截事件,如日誌記錄或錯(cuò)誤處理。了解這兩個(gè)階段有助於精確控制JavaScript響應(yīng)用戶操作的時(shí)機(jī)和方式。

Java和JavaScript有什麼區(qū)別? Java和JavaScript有什麼區(qū)別? Jun 17, 2025 am 09:17 AM

Java和JavaScript是不同的編程語(yǔ)言。 1.Java是靜態(tài)類型、編譯型語(yǔ)言,適用於企業(yè)應(yīng)用和大型系統(tǒng)。 2.JavaScript是動(dòng)態(tài)類型、解釋型語(yǔ)言,主要用於網(wǎng)頁(yè)交互和前端開(kāi)發(fā)。

See all articles