8000 2017 8.29 · pythonpeixun/interview_python@9a26878 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9a26878

Browse files
committed
2017 8.29
1 parent 2235846 commit 9a26878

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Readme.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1283,6 +1283,7 @@ def recursion_merge_sort2(l1, l2):
12831283

12841284
再把旧列表加到新列表后面
12851285

1286+
12861287
```pyhton
12871288
def loop_merge_sort(l1, l2):
12881289
tmp = []
@@ -1298,6 +1299,7 @@ def loop_merge_sort(l1, l2):
12981299
return tmp
12991300
```
13001301

1302+
13011303
## 9 交叉链表求交点
13021304

13031305
去哪儿的面试,没做出来.
@@ -1332,7 +1334,9 @@ def node(l1, l2):
13321334
```
13331335

13341336
修改了一下:
1335-
```
1337+
1338+
1339+
```python
13361340
#coding:utf-8
13371341
class ListNode:
13381342
def __init__(self, x):
@@ -1365,8 +1369,10 @@ def node(l1, l2):
13651369
return
13661370
```
13671371

1372+
13681373
思路: http://humaoli.blog.163.com/blog/static/13346651820141125102125995/
13691374

1375+
13701376
## 10 二分查找
13711377

13721378
```python

0 commit comments

Comments
 (0)
0