Skip to content

Commit 3895fb7

Browse files
author
王鹏
committed
docs: add _10_fib
1 parent 6b99872 commit 3895fb7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# LeetCode-Java
22
## 说明
3-
- leetcode练习,坚持每天一道,目前已完成264道
3+
- leetcode练习,坚持每天一道,目前已完成265道
44
- 解题语言是Java
55
- 每道题都是可编译运行的
66
- 每道题有自己的方法和他人优秀解法
@@ -18,7 +18,7 @@
1818
- [x] [从尾到头打印链表](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/offer/_06_reversePrint.java)
1919
- [x] [重建二叉树](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/offer/_07_buildTree.java)
2020
- [x] [用两个栈实现队列](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/offer/_09_CQueue.java)
21-
- [ ] [斐波那契数列](https://leetcode-cn.com/problems/fei-bo-na-qi-shu-lie-lcof)
21+
- [x] [斐波那契数列](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/offer/_10_fib.java)
2222

2323
## 已解题目
2424

@@ -53,9 +53,9 @@
5353
- [线段树](https://leetcode-cn.com/tag/segment-tree/)(9)
5454
- [二叉搜索树](https://leetcode-cn.com/tag/binary-search-tree/)(15)
5555

56-
### 题目列表(更新中—已完成264
56+
### 题目列表(更新中—已完成265
5757

58-
[Leetcode-Java(260+题解,持续更新、欢迎star&留言&交流)](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/offer/_09_CQueue.java)
58+
[Leetcode-Java(260+题解,持续更新、欢迎star&留言&交流)](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/offer/_10_fib.java)
5959

6060
#### 剑指offer系列
6161

@@ -67,6 +67,7 @@
6767
| [剑指 Offer 06. 从尾到头打印链表](https://leetcode-cn.com/problems/cong-wei-dao-tou-da-yin-lian-biao-lcof/) | [ReversePrint](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/offer/_06_reversePrint.java) | [链表](https://leetcode-cn.com/tag/linked-list/) | Easy | |
6868
| [剑指 Offer 07. 重建二叉树](https://leetcode-cn.com/problems/zhong-jian-er-cha-shu-lcof/) | [BuildTree](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/offer/_07_buildTree.java) | [](https://leetcode-cn.com/tag/tree/)[DFS](https://leetcode-cn.com/tag/depth-first-search/) | Medium | |
6969
| [剑指 Offer 09. 用两个栈实现队列](https://leetcode-cn.com/problems/yong-liang-ge-zhan-shi-xian-dui-lie-lcof/) | [CQueue](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/offer/_09_CQueue.java) | [](https://leetcode-cn.com/tag/stack/)[设计](https://leetcode-cn.com/tag/design/) | Easy | |
70+
| [剑指 Offer 10- I. 斐波那契数列](https://leetcode-cn.com/problems/fei-bo-na-qi-shu-lie-lcof/) | [Fib](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/offer/_10_fib.java) | | Easy | |
7071

7172
#### 经典题解
7273

0 commit comments

Comments
 (0)