-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSelectSort.php
More file actions
108 lines (91 loc) · 2.43 KB
/
SelectSort.php
File metadata and controls
108 lines (91 loc) · 2.43 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
97
98
99
100
101
102
103
104
105
106
107
108
<?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 SelectSort
{
/**
* 整数数组
* @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 ascSelectSort()
{
pre($this->data);
$length = count($this->data);
for ($i = 0; $i< $length-1; $i++) {
for ($j = $i; $j < $length-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;
}
}
$temp = $this->data[$length-1];
$this->data[$length-1] = $this->data[$i];
$this->data[$i] = $temp;
}
pre($this->data);
}
/**
* 降序选择
* 时间复杂度 n n-1 n-2 n-3 .... 1 (1+n)*n/2 = O(n2)
*/
public function descSelectSort()
{
pre($this->data);
$length = count($this->data);
for ($i = 0; $i< $length-1; $i++) {
for ($j = $i; $j < $length-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;
}
}
$temp = $this->data[$length-1];
$this->data[$length-1] = $this->data[$i];
$this->data[$i] = $temp;
}
pre($this->data);
}
}
$start = memory_get_usage();
$select = new SelectSort([7,3,2,4,6,9,5]);
//$select->ascSelectSort();
$select->descSelectSort();
$end = memory_get_usage();
prend(($end-$start)/1024/1024);
?>