PHP’s four basic algorithms: bubble, selection, insertion and quick sort
Many people say that the algorithm is the core of the program. The key to a program being better than worse is the quality of the algorithm. As a junior PHPer, although I have little exposure to algorithmic things. But I think we still need to master the four basic algorithms of bubble sort, insertion sort, selection sort, and quick sort. Below is my analysis of the four methods according to my own understanding.
Requirements: Use bubble sort, quick sort, selection sort, and insertion sort to sort the values in the array below in ascending order.
$arr(1,43,54,62,21,66,32,78,36,76,39);
1. Bubble sorting method
* Idea analysis: The method is as its name suggests, just like bubbling, the largest number emerges from the array each time.
* For example: 2,4,1 // The first bubble is 4
* 2,1,4 // The second bubble is 2
* 1,2, 4 // It ended up like this
* Code implementation:
$arr=array(1,43,54, 62,21,66,32,78,36,76,39);
function getpao($arr)
{
$len=count($arr);
//Set an empty The array is used to receive bubbles that pop up
//This layer loop controls the number of rounds of bubbles required
for($i=1;$i { //This The layer loop is used to control the number of times a number needs to be compared in each round
for($k=0;$k {
if($arr[$ k]>$arr[$k+1])
$arr ;
$arr[$k]=$tmp;
2. Selection sorting method:
Selection sorting method idea: Select a corresponding element each time, and then place it in the specified position
Copy code
function select_sort($arr) {
//The implementation idea of double loop is completed, the outer layer controls the number of rounds and the current minimum value. The number of comparisons in the inner control
// The known minimum value should be used Compare.
$p = $j;
//If it is found that the position of the minimum value is different from the current assumed position $i, the positions can be interchanged
If($p != $i) {
$tmp = $arr[$p | > return $arr;
}
3. Insertion sort method
Insertion sort method idea: Insert the elements to be sorted into the specified position of the array whose sort number has been assumed.
Copy code
The code is as follows:
function insert_sort($arr) {
//Distinguish which part is sorted
//Which part is unsorted
//Find one of the elements that needs to be sorted
//This element starts from the second element and ends with the last element that needs to be sorted
//It can be marked using a loop
//i loop controls the elements that need to be inserted each time , once the elements that need to be inserted are controlled,
//Indirectly, the array has been divided into 2 parts. The subscript is smaller than the current one (the one on the left), which is the sorted sequence
for($i=1, $ len=count($arr); $i //Get the current element value that needs to be compared.
$tmp = $arr[$i];
//Inner loop controls comparison and insertion
for($j=$i-1;$j>=0;$j--) {
//$arr[$i];//The element that needs to be inserted; $arr[$j];//The element that needs to be compared
的> // find that the inserted element should be small, and exchange positions
// Exchange the later elements with the previous elements //Set the previous number to the current number that needs to be exchanged Since it is an array that has been sorted, there is no need to compare the previous ones again.
break;
//Return
return $arr;
}
4. Quick sort method
Copy code
The code is as follows:
//First determine whether you need to continue
$length = count($arr);
/ /Traverse all elements except the ruler and put them into two arrays according to their size
//Initialize two arrays
$left_array = array();//
less than the ruler $right_array = array( );//
greater than the ruler for($i=1; $i if($base_num > $arr[$i]) {
//Put Into the left array
$left_array[] = $arr[$i]; }
}
//Then perform the same sorting on the left and right arrays respectively
//Recursively call this function and record the result
$left_array = quick_sort($left_array);
$right_array = quick_sort($right_array);
//Merge the left ruler and the right
return array_merge($left_array, array($base_num), $right_array);
}

在PHP编程中,算法是不可或缺的一部分。掌握常见的算法,不仅可以提高代码效率,还可以为后续的程序设计提供帮助。以下是PHP编程中常见的算法:排序算法排序算法是指将一组数据按照一定的规则排列成有序的序列。在PHP编程中,常用的排序算法有冒泡排序、插入排序、选择排序、快速排序等。其中,快速排序是时间复杂度最低的一种排序算法,适合处理大规模的数据。查找算法查找算法

PHP是一种非常流行的编程语言,它支持各种数据类型和算法,其中数组排序和搜索算法是基本而重要的部分。本文将会介绍PHP中常用的数组排序及搜索算法,以及它们的应用场景和效率分析。一、数组排序PHP中提供了多种数组排序的方法,包括冒泡排序、插入排序、选择排序、快速排序、归并排序等等。以下是对其中常用的几种算法的介绍及示例代码:冒泡排序(BubbleSort)冒

随着互联网的普及和应用的不断扩大,程序语言的发展也变得越来越重要。PHP作为一种非常流行的程序语言,也在不断的发展。PHP开发者在使用PHP进行编程的过程当中,可能会面对到需要对一些知识进行表示,以及需要进行自动生成算法的问题。那么,PHP中如何进行知识表示和自动生成算法呢?下面本文将会对此进行探讨。一、知识表示知识表示是人工智能领域中非常重要的一个问题。知

PHP算法解析:如何使用二分查找算法在有序数组中快速定位元素?概述:二分查找算法是一种高效的查找算法,它适用于有序数组中查找特定元素。本文将详细介绍二分查找算法的原理,并给出PHP代码示例。原理:二分查找算法通过反复将查找范围缩小一半,从而快速定位目标元素。其流程如下:首先,将查找范围缩小为数组的开头和结尾;然后,计算中间元素的索引,将其与目标元素进行比较;

深入理解PHP和Vue在脑图功能中的核心算法引言:在现代的互联网时代,我们经常使用各种各样的应用程序来帮助我们组织和管理信息。脑图是一种常见且实用的信息组织方式,它能够将复杂的思维过程以图形化的方式展示出来。在本文中,我们将着重讨论PHP和Vue在脑图功能中的核心算法,并给出代码示例。一、脑图的特点脑图是一种以中心主题为核心,通过树状结构来展示与该主题相关的

PHP算法解析:如何使用动态规划算法解决0-1背包问题?引言:动态规划是一种常用于解决优化问题的算法思想。在程序开发中,0-1背包问题是一个经典的动态规划应用场景。本文将介绍如何使用PHP编写动态规划算法来解决0-1背包问题,并提供具体的代码示例。什么是0-1背包问题?0-1背包问题是一种经典的组合优化问题。题目设定如下:有一个背包,它的容量为C。现有n个物

PHP是一种广泛应用的开发语言,常用于Web应用程序的开发。然而,Web应用程序往往需要处理大量的数据,包括数据的处理、存储和查询等等,因此,在PHP中应用算法和数据结构是非常关键的技术。算法是一种在计算机编程中用来解决问题的通用方法。在编程中,我们通过设计和实现算法来解决问题,从而提高程序的效率、可维护性和可扩展性。常用的算法包括排序、搜索、分治、贪心等等

PHP是一种广泛应用于Web开发的脚本语言,且在建立动态网站上表现得越来越好。在Web开发中,数据结构和算法的重要性并不低于其他编程范畴,其对于程序运行效率的影响尤为显著。尤其是在涉及大量数据存储和处理,或者对程序性能要求较高的场景下,数据结构和算法成为了不可忽视的一部分。本文主要介绍PHP中一些常用的数据结构和算法。一、数据结构数组PHP数组是一种非常常见


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
