


Bubble Sort is a relatively simple and stable sorting algorithm. Bubble sorting algorithm steps: Compare adjacent elements. If the first one is larger than the second one, swap their positions; perform the same operation for each pair of adjacent elements. In this way, the final element It is the largest; except for the largest element that has been obtained, repeat the previous steps for the remaining elements until there are no elements that need to be compared, and the sorting is completed. Bubble algorithm, in the best case, the time complexity is O(n); in the worst case, the time complexity is O(n2); the average time complexity is O(n2).
PHP实现冒泡排序、双向冒泡排序算法 1
/**
* Data structure and algorithm (PHP implementation) - Bubble Sort.
*
* @author Chuangxiang Programming (TOPPHP.ORG)
* @copyright Copyright (c) 2013 TOPPHP.ORG All Rights Reserved
* @license http://www.opensource.org/licenses/mit-license.php MIT LICENSE
* @version 1.0.0 - Build20130608
*/
class BubbleSort {
/**
* Bubble sort.
*
* @var integer
*/
const SORT_NORMAL = 1;
/**
* Bidirectional bubble sort.
*
* @var integer
*/
const SORT_DUPLEX = 2;
/**
* The data array that needs to be sorted.
*
* @var array
*/
private $data;
/**
* The length of the data array.
*
* @var integer
*/
private $size;
/**
* Whether the data array is sorted.
*
* @var boolean
*/
private $done;
/**
*Construction method - initialize data.
*
* @param array $data The data array to be sorted.
*/
public function __construct(array $data) {
$this->data = $data;
$this->size = count($this->data);
$this->done = FALSE;
}
/**
* Exchange the positions of two elements in the data array.
*
* @param integer $x The index of the element in the array.
* @param integer $y The index of the element in the array.
*/
private function swap($x, $y) {
$temp = $this->data[$x];
$this->data[$x] = $this->data[$y];
$this->data[$y] = $temp;
}
/**
* Bubble sort.
*/
private function sort() {
$this->done = TRUE;
for ($i = 1; $i size; ++$i) {
// 记录交换数据的次数。
$swap = 0;
for ($j = $this->size - 1; $j > $i - 1; --$j) {
if ($this->data[$j] data[$j - 1]) {
$this->swap($j - 1, $j);
++$swap;
}
}
// 若交换数据的次数为0,说明数据数组已有序,不必再进行排序。
if (0 === $swap) {
break ;
}
}
}
/**
* Bidirectional bubble sort.
*/
private function duplexSort() {
$this->done = TRUE;
for ($i = 1; $i size / 2); ++$i) {
// 记录交换数据的次数。
$swap = 0;
for ($j = $this->size - 1, $k = $i - 1;
$j > $i - 1 && $k size - 1; --$j, ++$k) {
if ($this->data[$j] data[$j - 1]) {
$this->swap($j - 1, $j);
++$swap;
}
if ($this->data[$k] > $this->data[$k + 1]) {
$this->swap($k, $k + 1);
++$swap;
}
}
// If the number of data exchanges is 0, it means that the data array is in order and there is no need to sort it.
If (0 === $swap) {
break;
}
}
}
/**
* Get the sorted data array.
*
* @param integer $sort Sorting algorithm: SORT_NORMAL is bubble sort; SORT_DUPLEX is two-way bubble sort.
* @return array Returns the sorted data array.
*/
public function getResult($sort = self::SORT_NORMAL) {
// If it has been sorted, there is no need to sort again, and the sorted data array will be returned directly.
If ($this->done) {
Return $this->data;
}
switch ($sort) {
case self::SORT_DUPLEX:
$this->duplexSort();
break;
case self::SORT_NORMAL:
default:
$this->sort();
break;
}
Return $this->data;
}
}
?>
Sample code 1
2
3
4
$bubble = new BubbleSort(array(35, 75, 92, 41, 27, 58));
echo '
', print_r($bubble->getResult(BubbleSort::SORT_DUPLEX), TRUE), '';
?>

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。


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

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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version
Chinese version, very easy to use
