Skip to content

Commit 2ed8fa8

Browse files
committed
feat: The new algorithm 🔨
1 parent d6c94a0 commit 2ed8fa8

File tree

4 files changed

+33
-1
lines changed

4 files changed

+33
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,15 @@
2424
│ │ ├── InsertSort.php 插入排序
2525
│ │ └── SelectSort.php 选择排序
2626
│ │
27-
│ ├── Query 查询篇
27+
│ ├── Query 查找篇
2828
│ │ ├── BinaryQuery.php 二分查找
29+
│ │ ├── FibonacciQuery.php 斐波那契查找
2930
│ │ └── QulickQuery.php 快速查找
3031
│ │
3132
│ └── Other 其他
3233
│ ├── MonkeyKing.php 猴子选大王
34+
│ ├── GetCattle.php 牛年求牛
35+
│ ├── Fibonacci.php 斐波那契数列
3336
│ └── BigSmallReplace.php Hello World 输出 Olleh Dlrow
3437
3538
├──LICENSE

package/Other/GetCattle.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
/**
4+
* GetCattle
5+
*
6+
* @author Pu ShaoWei <[email protected]>
7+
* @date 2017/8/24
8+
* @license Mozilla
9+
*/
10+
class GetCattle
11+
{
12+
13+
}

package/Query/BinaryTree.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
/**
3+
* ${NAME}
4+
*
5+
* @author Pu ShaoWei <[email protected]>
6+
* @date 2017/8/25
7+
* @license Mozilla
8+
*/

package/Query/FibonacciQuery.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
/**
3+
* ${NAME}
4+
*
5+
* @author Pu ShaoWei <[email protected]>
6+
* @date 2017/8/25
7+
* @license Mozilla
8+
*/

0 commit comments

Comments
 (0)