Skip to content

Commit bc975cc

Browse files
committed
修改之前github作者信息(之前作者信息错误)
1 parent 733d00f commit bc975cc

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

php/10_heap/Heap.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Date: 2019/9/5
66
* Time: 9:01
77
* 堆的基本操作(大顶堆,小顶堆 几种堆化方式,堆排序,动态数据流查top k ,查中位数)
8+
*
89
*/
910
namespace Algo_10;
1011

php/10_heap/findmiddle.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<?php
2+
/**
3+
* Created by PhpStorm.
4+
* User: 764432054@qq.com
5+
* 动态数据流实时获取中位数
6+
*/
27
namespace Algo_10;
38

49
require_once '../vendor/autoload.php';

php/10_heap/main.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<?php
2+
/**
3+
* Created by PhpStorm.
4+
* User: 764432054@qq.com
5+
* 堆的基本操作
6+
*/
7+
28
namespace Algo_10;
39

410
require_once '../vendor/autoload.php';

php/10_heap/topn.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<?php
22
/**
3-
*2.动态数据集合求top n
3+
* Created by PhpStorm.
4+
* User: 764432054@qq.com
5+
6+
*动态数据集合求top n
47
*/
58
namespace Algo_10;
69

0 commit comments

Comments
 (0)