-
Notifications
You must be signed in to change notification settings - Fork 2
/
BitMap.php
139 lines (121 loc) · 2.7 KB
/
BitMap.php
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?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 BitMap
{
/**
* 整数数组
* @var array
*/
public $data = [];
/**
* 位图数组
* @var array
*/
public $bitmap = [];
public function __construct($array)
{
$this->data = $array;
sort($this->data);
$max = $this->data[count($this->data) - 1];
$this->bitmap = array_fill(0, ceil($max/64), 0);
}
/**
* 在位图中找出10个最大的数
*
*/
public function findMaxTen()
{
$k = 0;
$array = [];
$length = count($this->bitmap) - 1;
for ($i = $length;$i>=0;$i--) {
if ($k > 9) break;
for ($j = 63; $j>=0;$j--) {
if ($k > 9) break;
$temp = 1 << $j;
$flag = $this->bitmap[$i] & $temp;
if ($flag) {
$array[$k] = 64*$i + $j;
$k++;
}
}
}
prend($array);
}
/**
* 将常规数组转成位图数组
*
*/
public function saveArrayToBitmap()
{
pre($this->data);
foreach ($this->data as $key => $val) {
$arrayindex = floor($val / 64);
$bitindex = $val % 64;
$temp = 1 << $bitindex;
$this->bitmap[$arrayindex] = $this->bitmap[$arrayindex] | $temp;
}
/* foreach ($this->bitmap as $key => $val) {
pre(decbin($val));
} */
}
/**
* 将位图数组转成常规数组
*
*/
public function saveBitmapToArray()
{
$k = 0;
$array = [];
foreach ($this->bitmap as $key => $val) {
for ($i = 0; $i<64;$i++) {
$temp = 1 << $i;
$flag = $this->bitmap[$key] & $temp;
if ($flag) {
$array[$k] = 64*$key + $i;
}
$k++;
}
}
pre($array);
}
}
$start = memory_get_usage();
$k = 0;
$max = 1000;
for ($i = 1;$i<$max;$i++) {
$ass[$k] = rand(0,$max);
$k++;
}
$bitmap = new BitMap($ass);
$bitmap->saveArrayToBitmap();
//$bitmap->saveBitmapToArray();
$bitmap->findMaxTen();
$end = memory_get_usage();
prend(($end-$start)/1024/1024);
?>