-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBubbleSort.php
More file actions
96 lines (85 loc) · 2.13 KB
/
BubbleSort.php
File metadata and controls
96 lines (85 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
function pre($arr)
{
$data = func_get_args();
foreach($data as $key=>$val)
{
echo '<pre>';
print_r($val);
echo '</pre>';
}
}
function prend()
{
$data = func_get_args();
foreach($data as $key=>$val)
{
echo '<pre>';
print_r($val);
echo '</pre>';
}
exit();
}
/**
* 冒泡排序
* 基本思想是,对相邻的元素进行两两比较,顺序相反则进行交换,这样,每一趟会将最小或最大的元素“浮”到顶端,最终达到完全有序
* @author yumancang
*
*/
class BubbleSort
{
/**
* 整数数组
* @var array
*/
public $data = [];
public function __construct($array)
{
$this->data = $array;
}
/**
* 升序冒泡
* 时间复杂度 n n-1 n-2 n-3 .... 1 (1+n)*n/2 = O(n2)
*/
public function ascBubbleSort()
{
pre($this->data);
$length = count($this->data);
for ($i = 0; $i< $length-1; $i++) {
for ($j = 0; $j < $length-$i-1; $j++) {
if ($this->data[$j] > $this->data[$j+1]) {
$temp = $this->data[$j+1];
$this->data[$j+1] = $this->data[$j];
$this->data[$j] = $temp;
}
}
}
pre($this->data);
}
/**
* 降序冒泡
* 时间复杂度 n n-1 n-2 n-3 .... 1 (1+n)*n/2 = O(n2)
*/
public function descBubbleSort()
{
pre($this->data);
$length = count($this->data);
for ($i = 0; $i< $length-1; $i++) {
for ($j = 0; $j < $length-$i-1; $j++) {
if ($this->data[$j] < $this->data[$j+1]) {
$temp = $this->data[$j+1];
$this->data[$j+1] = $this->data[$j];
$this->data[$j] = $temp;
}
}
}
pre($this->data);
}
}
$start = memory_get_usage();
$bubble = new BubbleSort([7,3,2,4,6,9,5,55,77,33,23,234,66,88,44,234,566]);
$bubble->ascBubbleSort();
$bubble->descBubbleSort();
$end = memory_get_usage();
prend(($end-$start)/1024/1024);
?>