Skip to content

Commit

Permalink
修改之前github作者信息(之前作者信息错误)
Browse files Browse the repository at this point in the history
  • Loading branch information
hkui committed Sep 23, 2019
1 parent 733d00f commit bc975cc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions php/10_heap/Heap.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Date: 2019/9/5
* Time: 9:01
* 堆的基本操作(大顶堆,小顶堆 几种堆化方式,堆排序,动态数据流查top k ,查中位数)
*
*/
namespace Algo_10;

Expand Down
5 changes: 5 additions & 0 deletions php/10_heap/findmiddle.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/**
* Created by PhpStorm.
* User: 764432054@qq.com
* 动态数据流实时获取中位数
*/
namespace Algo_10;

require_once '../vendor/autoload.php';
Expand Down
6 changes: 6 additions & 0 deletions php/10_heap/main.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
<?php
/**
* Created by PhpStorm.
* User: 764432054@qq.com
* 堆的基本操作
*/

namespace Algo_10;

require_once '../vendor/autoload.php';
Expand Down
5 changes: 4 additions & 1 deletion php/10_heap/topn.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<?php
/**
*2.动态数据集合求top n
* Created by PhpStorm.
* User: 764432054@qq.com
*动态数据集合求top n
*/
namespace Algo_10;

Expand Down

0 comments on commit bc975cc

Please sign in to comment.