-
Notifications
You must be signed in to change notification settings - Fork 161
/
Algorithm.md
1569 lines (1306 loc) · 50.4 KB
/
Algorithm.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
## TODO
简化路径 #71
python 装饰器
洗牌算法
出现次数超过一半的数字
LC #862
8皇后
区间合并问题
## 链表
- [反转链表](#反转链表)<span id = "101"></span>
- [反转部分链表](#反转部分链表)<span id = "102"></span>
- [两个一组反转链表](#两个一组反转链表)<span id = "103"></span>
- [k个一组反转链表](#k个一组反转链表)<span id = "104"></span>
- [奇偶次序分离后合并有序链表](#奇偶次序分离后合并有序链表)<span id = "105"></span>
- [两个链表求和 I](#两个链表求和-i)<span id = "106"></span>
- [两个链表求和 II](#两个链表求和-ii)<span id = "107"></span>
## 二叉树
- [二叉树的前序中序后序遍历](#二叉树的前序中序后序遍历)<span id = "201"></span>
- [重建二叉树](#重建二叉树)<span id = "202"></span>
- [二叉树的翻转](#二叉树的翻转)<span id = "203"></span>
- [二叉树的深度](#二叉树的深度)<span id = "204"></span>
- [平衡二叉树](#平衡二叉树)<span id = "205"></span>
- [二叉树的最大路径和](#二叉树的最大路径和)<span id = "206"></span>
- [二叉树的最低公共祖先](#二叉树的最低公共祖先)<span id = "207"></span>
## 动态规划
- [独特的路径](#独特的路径)<span id = "301"></span>
- [House robber](#house-robber)<span id = "302"></span>
- [换硬币](#换硬币)<span id = "303"></span>
- [买卖股票的最佳时机I](#买卖股票的最佳时机I)<span id = "304"></span>
- [买卖股票的最佳时机II](#买卖股票的最佳时机II)<span id = "305"></span>
- [矩阵中的路径](#矩阵中的路径)<span id = "306"></span>
- [正则表达式匹配](#正则表达式匹配)<span id = "307"></span>
- [连续子数组的最大和](#连续子数组的最大和)<span id = "308"></span>
- [最长不含重复字符的子字符串](#最长不含重复字符的子字符串)<span id = "309"></span>
- [最长公共子序列](#最长公共子序列)<span id = "310"></span>
- [最长递增子序列](#最长递增子序列)<span id = "311"></span>
- [矩阵中最长递增路径](#矩阵中最长递增路径)<span id = "312"></span>
- [背包问题动态规划]
## 二分查找
- [搜索排序数组的插入位置](#搜索排序数组的插入位置)<span id = "401"></span>
- [数字在数组中的位置](#数字在数组中的位置)<span id = "402"></span>
- [旋转数组的最小值](#旋转数组的最小值)<span id = "403"></span>
- [在旋转数组中查找](#在旋转数组中查找)<span id = "404"></span>
## 排序算法
- [冒泡排序](#冒泡排序)<span id = "501"></span>
- [插入排序](#插入排序)<span id = "502"></span>
- [选择排序](#选择排序)<span id = "503"></span>
- [归并排序](#归并排序)<span id = "504"></span>
- [快速排序](#快速排序)<span id = "505"></span>
- [堆排序](#堆排序)<span id = "506"></span>
- [计数排序](#计数排序)<span id = "507"></span>
- [桶排序](#桶排序)<span id = "508"></span>
## 双指针
- [两数之和 Two Sum](#两数之和)<span id = "601"></span>
- [三数之和 3 Sum](#三数之和-3-sum)<span id = "602"></span>
- [3 Sum Closest](#3-sum-closest)<span id = "603"></span>
- [搜索二维矩阵]<span id = "604"></span>
- [装满水的容器LC#11]<span id = "605"></span>
- [接雨水](#接雨水)<span id = "606"></span>
- [交换之后的最大值](#交换之后的最大值)<span id = "607"></span>
- [总和≥s的连续子数组的最小长度](#总和s的连续子数组的最小长度)<span id = "608"></span>
## 设计类
- [min stack]
- [LRU cache 的实现]
- [tinyurl]
## 其他
---
### 反转链表
#### 题目:
反转一个单链表。
#### Python Solution:
**分析:** 递归法和迭代法,而迭代法又分为了两种:头插法和尾插法。
```Python
class Solution: # 递归法 找到最后两个节点调整顺序,向前递归。
def reverseList(self, head: ListNode) -> ListNode:
if not head or not head.next:
return head
newhead = self.reverseList(head.next)
head.next.next = head
head.next = None
return newhead
```
```Python
class Solution: # 迭代法 尾插法的简略写法。
def reverseList(self, head: ListNode) -> ListNode:
pre = None
while head:
pre, pre.next, head = head, pre, head.next
return pre
```
```Python
class Solution: # 迭代法 头插法,面试时需要配合画图和面试官讲解
def reverseList(self, head: ListNode) -> ListNode:
dummy = ListNode(0)
dummy.next = head
while head and head.next:
cur = head.next
head.next = cur.next
cur.next = dummy.next
dummy.next = cur
return dummy.next
```
[返回目录](#101)
---
### 反转部分链表
#### 题目:
将链接列表从位置m反向到n。一次性完成。 注意:1≤m≤n≤列表长度。
#### Python Solution:
**分析:** 配合上一道题的头插法食用更美味。写起来更简洁,比尾插法好很多。
```Python
class Solution:
def reverseBetween(self, head: ListNode, m: int, n: int) -> ListNode:
dummy = post = ListNode(0)
post.next = pre = head
for _ in range(m-1):
post, pre = pre, pre.next
for _ in range(n-m):
cur = pre.next
pre.next = cur.next
cur.next = post.next
post.next = cur
return dummy.next
```
[返回目录](#102)
---
### 两个一组反转链表
#### 题目:
给定一个链表,每隔两个相邻节点交换一次并返回其头部。 您不能修改列表节点中的值,只能更改节点本身。
#### Python Solution:
**分析:** 配合上一道题的头插法食用更美味。
```Python
class Solution:
def swapPairs(self, head: ListNode) -> ListNode:
dummy = tmp = ListNode(0)
tmp.next = head
while head and head.next:
cur = head.next
head.next = cur.next
cur.next = tmp.next
tmp.next = cur
tmp, head = head, head.next
return dummy.next
```
[返回目录](#103)
---
### k个一组反转链表
#### 题目:
给定一个链表,一次反转链表k的节点并返回其修改后的列表。
k是一个正整数,并且小于或等于链接列表的长度。如果节点数不是k的倍数,那么最后剩下的节点应保持原样。
#### Python Solution:
**分析:** 这是一道难度比较大的题,也可以看作是上一题的延伸。可以继续头插法,也可以尾插法,不过尾插法找结点要绕一点,归根结底是一样的 !!! 不过要注意的是循环 头插法 k-1 次,尾插法 k 次。如果剩余反转的链表长度不足 k ,那么保持原样提示我们要对链表计数。用 while True 建立一个循环即可。
```Python
class Solution:
def reverseKGroup(self, head: ListNode, k: int) -> ListNode:
dummy = tmp = ListNode(0)
tmp.next = left = right = head
while True:
count = 0
while right and count < k:
right = right.next
count += 1
if count == k:
for _ in range(k-1): # 这个 k-1 很关键。
cur = left.next
left.next = cur.next
cur.next = tmp.next
tmp.next = cur
tmp, left = left, right
else:
return dummy.next
```
```Python
class Solution:
def reverseKGroup(self, head: ListNode, k: int) -> ListNode:
dummy = tmp = ListNode(0)
tmp.next = left = right = head
while True:
count = 0
while count < k and right:
count += 1
right = right.next
if count == k:
pre, post = right, left
for _ in range(k):
pre, pre.next, post = post, pre, post.next
tmp.next, tmp, left = pre, left, right
else:
return dummy.next
```
[返回目录](#104)
---
### 奇偶次序分离后合并有序链表
#### 题目:
给定一个链表,次序为奇数的节点按升序排列,次序为偶数的节点按降序排列,请返回排序好的有序链表。
#### Python Solution:
**分析:** 这道题比较有意思,乍一看很复杂但是思路十分清晰,分为三步:1. 奇偶次序分离链表 2. 将分离后降序的链表进行反转 3. 合并两个有序链表并返回。
```Python
class Solution:
def reverseUpdate(self, head: ListNode) -> ListNode:
if not head: # 首先对与链表进行判断
return None
oddhead = odd = head # 进行第一步:奇偶次序分离
evenhead = even = odd.next
while even and even.next:
odd.next = odd = even.next
even.next = even = odd.next
rev = None # 对降序的偶数次链表进行反转
while evenhead:
rev, rev.next, evenhead = evenhead, rev, evenhead.next
dummy = tmp = ListNode(0) # 合并两个有序链表
while rev and oddhead:
if rev.val > oddhead.val:
tmp.next = oddhead
oddhead = oddhead.next
else:
tmp.next = rev
rev = rev.next
tmp = tmp.next
tmp.next = rev or oddhead
return dummy.next
```
[返回目录](#105)
---
### 两个链表求和 I
#### 题目:
您将获得两个非空链表,表示两个非负整数。数字以相反的顺序存储,每个节点包含一个数字。添加两个数字并将其作为链接列表返回。
#### Python Solution:
**分析:** 自我感觉十分优美的 O(1) 空间的解法,随便选一个链表作为主线,将相同长度的部分加上来,然后把剩余的部分拼接过来,如果有进位则顺理成章转化为 369,Plus One 问题。这里链表已经倒序,操作更加简便。
```Python
class Solution:
def addTwoNumbers(self, l1: ListNode, l2: ListNode) -> ListNode:
flag = 0
dummy = p1 = ListNode(0); p2 = ListNode(0)
p1.next , p2.next = l1, l2
while p1.next and p2.next:
p1, p2 = p1.next, p2.next
sumval = p1.val + p2.val + flag
p1.val = sumval % 10
flag = sumval >= 10
p1.next = p1.next or p2.next
while flag and p1.next:
p1 = p1.next
if p1.val == 9:
p1.val = 0
else:
p1.val += 1
flag = 0
p1.next = ListNode(1) if flag else p1.next
return dummy.next
```
[返回目录](#106)
### 两个链表求和 II
#### 题目:
您将获得两个非空链表,它们代表两个非负整数。 最重要的数字在前,并且它们的每个节点都包含一个数字。 将两个数字相加,并将其作为链表返回。 您可能会假设两个数字除了数字0本身以外都不包含任何前导零。
跟进:如果无法修改输入列表怎么办? 换句话说,不允许反转列表。
#### Python Solution:
**分析:** 有两种做法,一种是不用额外空间的做法,在原有的一个链表的基础上加,但是考虑的边界条件等比较多,不推荐,如果面试官没有要求尽量用第二种:计算两个链表代表的数,相加后新创建一个链表。
```Python
class Solution:
def addTwoNumbers(self, l1: 'ListNode', l2: 'ListNode') -> 'ListNode':
if not l1 and not l2:
return None
l1_num = 0
while l1:
l1_num = l1_num * 10 + l1.val
l1 = l1.next
l2_num = 0
while l2:
l2_num = l2_num * 10 + l2.val
l2 = l2.next
lsum = l1_num + l2_num
head = ListNode(None)
cur = head
for istr in str(lsum):
cur.next = ListNode(int(istr))
cur = cur.next
return head.next
```
**麻烦的 O(1) 空间的做法如下,不关心可跳过:**
```Python
class Solution:
def addTwoNumbers(self, l1: ListNode, l2: ListNode) -> ListNode:
def countlength(root):
cnt = 0
while root:
root = root.next
cnt += 1
return cnt
c1, c2 = l1, l2
len1, len2 = countlength(c1), countlength(c2)
if len2 > len1:
len1, len2, l1, l2 = len2, len1, l2, l1
dummy1 = tmp = tmp1 = ListNode(0)
tmp.next = l1
for _ in range(len1 - len2):
tmp = tmp.next
if tmp.val != 9:
tmp1 = tmp
cur = tmp.next
while cur:
val = cur.val + l2.val
cur.val = val % 10
if val < 9:
tmp1 = cur
elif val > 9:
while tmp1 != cur:
tmp1.val = (tmp1.val + 1) % 10
tmp1 = tmp1.next
cur, l2 = cur.next, l2.next
return dummy1 if dummy1.val else dummy1.next
```
[返回目录](#107)
---
### 二叉树的前序中序后序遍历
#### 题目:
给定一个二叉树,给出它的前序、中序、后序遍历,递归和非递归方式。
#### Python Solution:
**分析:** 这是二叉树最基本的一道题,也是考察对二叉树的认识和递归的题。后序遍历的非递归有点难度,但是也可以取巧。
```Python
class Solution: # 前序遍历
def preorderTraversal(self, root):
return [root.val] + self.preorderTraversal(root.left) + self.preorderTraversal(root.right) if root else []
class Solution:
def preorderTraversal(self, root):
stack, res = [root], []
while stack:
node = stack.pop()
if node:
res.append(node.val)
stack.append(node.right)
stack.append(node.left)
return res
```
```Python
class Solution: # 中序遍历
def inorderTraversal(self, root):
return self.inorderTraversal(root.left) + [root.val] + self.inorderTraversal(root.right) if root else []
class Solution:
def inorderTraversal(self, root):
stack, res = [], []
while stack or root:
if root:
stack.append(root)
root = root.left
else:
node = stack.pop()
res.append(node.val)
root = node.right
return res
```
```Python
class Solution: # 后序遍历
def postorderTraversal(self, root):
return self.postorderTraversal(root.left) + self.postorderTraversal(root.right) + [root.val] if root else []
class Solution:
def postorderTraversal(self, root):
stack, res = [root], []
while stack:
node = stack.pop()
if node:
res.append(node.val)
stack.append(node.left)
stack.append(node.right)
return res[::-1]
```
[返回目录](#201)
---
### 重建二叉树
#### 题目:
给定一棵树的后序和中序(前序和中序)遍历,构造二叉树。
注意: 您可以假定树中不存在重复项
#### Python Solution:
**分析:** 以后序中序为例进行解析,推荐 dfs 那种,效率更高。两种解法都非常好理解,第一种是找到根节点,然后将 inorder 查分为两半继续寻找,问题在于如何找到 根节点在 inorder 的位置,下面第一种解法有点傻,更高效的是建立一个哈希表,占用 O(n) 的空间、查询时间为O(1)。第二种解法呢则非常聪明,不用找根节点的位置,构建 root.right 时每次都调用的是 postorder 最后一个元素,终点是 root.val 。构建 root.right 的时候终点是 None。
```Python
class Solution: # 推荐解法,可以和面试官讲解思路,赞!
def buildTree(self, inorder: List[int], postorder: List[int]) -> TreeNode:
def postdfs(stop):
if postorder and inorder[-1] != stop:
root = TreeNode(postorder.pop())
root.right = postdfs(root.val)
inorder.pop()
root.left = postdfs(stop)
return root
return postdfs(None)
class Solution: # 常规解法,中规中矩但条件判断易出现问题。
def buildTree(self, inorder: List[int], postorder: List[int]) -> TreeNode:
if inorder:
ind = inorder.index(postorder.pop())
root = TreeNode(inorder[ind])
root.right = self.buildTree(inorder[ind+1:], postorder)
root.left = self.buildTree(inorder[:ind], postorder)
return root
```
```Python
class Solution: # 常规写法差不多不写了,理解下递归左右子节点的顺序。
def buildTree(self, preorder: List[int], inorder: List[int]) -> TreeNode:
def predfs(stop):
if preorder and inorder[-1] != stop:
root = TreeNode(preorder.pop())
root.left = predfs(root.val)
inorder.pop()
root.right = predfs(stop)
return root
preorder.reverse()
inorder.reverse()
return predfs(None)
```
[返回目录](#202)
---
### 二叉树的翻转
#### 题目描述
左右翻转二叉树。
#### Python Solution:
**分析:** 分为两个解法,一种是递归的做法,另外一种是迭代的做法。
```python
class Solution:
def invertTree(self, root: TreeNode) -> TreeNode:
if root:
root.left, root.right = self.invertTree(root.right), self.invertTree(root.left)
return root
```
**迭代法**
```python
class Solution:
def invertTree(self, root):
stack = [root]
while stack:
node = stack.pop()
if node:
node.left, node.right = node.right, node.left
stack.extend([node.left, node.right])
return root
```
[返回目录](#203)
---
### 二叉树的深度
#### 题目描述
输入一棵二叉树,求该树的深度。从根节点到叶节点依次经过的节点(含根、叶节点)形成树的一条路径,最长路径的长度为树的深度。
#### Python Solution:
**分析:** 简单题,递归求解即可,写好 base case,不过迭代也可以做,就是一般的 dfs 或者 bfs 。
```Python
class Solution:
def TreeDepth(self, pRoot):
if not pRoot:
return 0
depthleft = self.TreeDepth(pRoot.left)
depthright = self.TreeDepth(pRoot.right)
return max(depthleft, depthright) + 1
```
[返回目录](#204)
---
### 平衡二叉树
#### 题目描述
给定一棵二叉树,确定它是否是高度平衡的。对于此问题,将高度平衡的二叉树定义为: 一棵二叉树,其中每个节点的两个子树的深度相差不超过1。
#### Python Solution:
**分析:** 上一道题二叉树的深度的延伸,有一个小技巧:不平衡就置为 1 ,之后就不用判断了。
```Python
class Solution(object):
def isBalanced(self, root):
def check(root):
if not root: return 0
left = check(root.left)
right = check(root.right)
if left == -1 or right == -1 or abs(left - right) > 1:
return -1
return max(left, right) + 1
return check(root) != -1
```
[返回目录](#205)
---
### 二叉树的最大路径和
#### 题目描述
给定一个非空的二叉树,找到最大路径总和。 对于此问题,路径定义为沿着父子连接从某个起始节点到树中任何节点的任何节点序列。 该路径必须至少包含一个节点,并且不需要经过根节点。
#### Python Solution:
**分析:** 比较经典的一道二叉树的题目,其实也是自底而上的递归调用,判断即可,同样有 trick 。
```Python
class Solution:
def maxPathSum(self, root: TreeNode) -> int:
self.res = float('-inf')
def dfs(root):
if not root:
return 0
left = max(0, dfs(root.left)) # left 和 right 与 0 取最大值方便了下面就不用判断了。
right = max(0, dfs(root.right))
val = root.val + left + right
self.res = max(self.res, val)
return root.val + max(left, right)
dfs(root)
return self.res
```
[返回目录](#206)
---
### 二叉树的最低公共祖先
#### 题目描述
给定二叉树,找到树中两个给定节点的最低公共祖先(LCA)。
#### Python Solution:
**分析:** 二叉树的题目考验递归比较多,这道题也是,迭代法想法还可以但是代码实现比较麻烦,不推荐。
```python
class Solution:
def lowestCommonAncestor(self, root: 'TreeNode', p: 'TreeNode', q: 'TreeNode') -> 'TreeNode':
if root == None:
return None
if root == p or root == q:
return root
m = self.lowestCommonAncestor(root.left,p,q)
n = self.lowestCommonAncestor(root.right,p,q)
if(m and n):
return root
elif m:
return m
else:
return n
```
**可简化为**
```python
class Solution:
def lowestCommonAncestor(self, root: 'TreeNode', p: 'TreeNode', q: 'TreeNode') -> 'TreeNode':
if root in (None, p, q): return root
left, right = (self.lowestCommonAncestor(kid, p, q)
for kid in (root.left, root.right))
return root if left and right else left or right
```
[返回目录](#207)
---
### 独特的路径
#### 题目描述
给定一个 m * n 的矩阵,求从左上角走到右下角有多少种走法。
#### Python Solution:
**分析:** 简单的动态规划,可以简化为一维 dp 。
```Python
class Solution:
def uniquePaths(self, m: int, n: int) -> int:
dp = [1] * n
for _ in range(1, m):
for i in range(1, n):
dp[i] = dp[i-1] + dp[i]
return dp[-1]
```
[返回目录](#301)
---
### House robber
#### 题目描述
给一组无序数组,求最大的子序列的和,但是相邻的数不能再一个序列里。
#### Python Solution:
**分析:** 其实就是 house robber 问题。简单题,可以从一维简化成常数量的空间复杂度。
```Python
class Solution:
def rob(self, nums: List[int]) -> int:
prev = cur = 0 # 为什么为零就可以了而不是 float('-inf'),因为负数就不考虑了。
for i in range(len(nums)):
cur, prev = max(prev + nums[i], cur), cur
return cur
```
[返回目录](#302)
---
### 换硬币
#### 题目描述
系统会为您提供不同面额的硬币和总金额。 编写一个函数来计算组成该数量所需的最少数量的硬币。 如果这笔钱不能用硬币的任何组合来弥补,请返回-1。
#### Python Solution:
**分析:** 经典动态规划问题,细节可以在大体思维没问题的时候深究提高效率。
```Python
class Solution:
def coinChange(self, coins, amount):
MAX = float('inf')
dp = [0] + [MAX] * amount
for i in range(1, amount + 1):
dp[i] = 1 + min(dp[i - c] if i >= c else MAX for c in coins)
return -1 if dp[-1] == MAX else dp[-1]
```
[返回目录](#303)
---
### 买卖股票的最佳时机I
#### 题目描述
假设您有一个数组,第i个元素是第i天给定股票的价格。如果只允许您最多完成一笔交易(即买入和卖出一股股票),请设计一种算法以找到最大的利润。
#### Python Solution:
**分析:** 简单题。可简化成一维。
```Python
class Solution:
def maxProfit(self, prices: List[int]) -> int:
min_p, max_v = float('inf'), 0
for p in prices:
min_p = min(min_p, p)
max_v = max(max_v, p - min_p)
return max_v
```
[返回目录](#304)
---
### 买卖股票的最佳时机II
#### 题目描述
假设您有一个数组,第i个元素是第i天给定股票的价格。 设计算法以找到最大的利润。 您可以根据需要完成尽可能多的交易(即,买入一份并多次出售一股股票)。 注意:您可能无法同时进行多项交易(即必须先出售股票才能再次购买)。
#### Python Solution:
**分析:** 两种做法,动态规划和贪心。贪心看起来很白痴的题。
```Python
class Solution: # 动态规划解法
def maxProfit(self, prices: List[int]) -> int:
n = len(prices)
dp, j = [0] * n, n-1
for i in range(n-2, -1, -1):
if prices[i] > prices[i+1]:
j = i
dp[i] = dp[i+1] if i == j else prices[j] - prices[i] + dp[j]
return dp[0] if dp else 0
```
```Python
class Solution: # 贪心做法,不限制次数那我们就比前一天大就把前一天买了金天卖了,明天也这么想就可以了。等价于一直持有。
def maxProfit(self, prices: List[int]) -> int:
res = 0
for i in range(1, len(prices)):
if prices[i] > prices[i-1]:
res += prices[i] - prices[i-1]
return res
```
[返回目录](#305)
---
### 矩阵中的路径
#### 题目描述
请设计一个函数,用来判断在一个矩阵中是否存在一条包含某字符串所有字符的路径。路径可以从矩阵中的任意一个格子开始,每一步可以在矩阵中向左,向右,向上,向下移动一个格子。如果一条路径经过了矩阵中的某一个格子,则之后不能再次进入这个格子。
#### Python Solution:
**分析:** 剑指 offer 第 12 题,考察 dfs。
```Python
class Solution:
def hasPath(self, matrix, string):
def dfs(i, j, pos):
if 0 <= i < m and 0 <= j < n and state[i][j]:
state[i][j] = ret = False
if matrix[i][j] == string[pos]:
if pos == len(string) - 1:
return True
ret = dfs(i, j+1, pos+1) or dfs(i, j-1, pos+1) or dfs(i+1, j, pos+1) or dfs(i-1, j, pos+1)
if not ret:
state[i][j] = True
return ret
if not matrix or not matrix[0]:
return False
m, n = len(matrix), len(matrix[0])
state = [[True] * n for _ in range(m)]
for x in range(m):
for y in range(n):
if matrix[x][y] == string[0]:
if dfs(x, y, 0):
return True
return False
```
[返回目录](#306)
---
### 正则表达式匹配
#### 题目描述
请实现一个函数用来匹配包括'.'和''的正则表达式。模式中的字符'.'表示任意一个字符,而''表示它前面的字符可以出现任意次(含0次)。在本题中,匹配是指字符串的所有字符匹配整个模式。例如,字符串"aaa"与模式"a.a"和"abaca"匹配,但是与"aa.a"和"ab*a"均不匹配。
#### Python Solution:
**分析:** 剑指 offer 第 19 题,关键是如何匹配多个情况。
```Python
class Solution(object):
def isMatch(self, s, p):
dp = [[False] * (len(p)+1) for _ in range(len(s)+1)]
dp[0][0] = True
for j in range(1, len(p)+1): # 初始化第一排 用来匹配 '' 和 '.*' 或 'a*' 什么的情况。
if p[j-1] == '*':
dp[0][j] = dp[0][j-2]
for i in range(1, len(s)+1):
for j in range(1, len(p)+1):
if p[j-1] != '*': # 不存在重复的匹配前项,那只用考虑两者的前一位就好了。
dp[i][j] = dp[i-1][j-1] and p[j-1] in (s[i-1], '.')
else: # 存在重复的匹配前项,所以需要两方面考虑,前者是忽略掉星和星之前的字符,后者是 s 的当前位还匹配星之前的字符。
dp[i][j] = dp[i][j-2] or dp[i-1][j] and p[j-2] in (s[i-1], '.')
return dp[-1][-1]
```
[返回目录](#307)
---
### 连续子数组的最大和
#### 题目描述
一个整数数组中的元素有正有负,在该数组中找出一个连续子数组,要求该连续子数组中各元素的和最大,这个连续子数组便被称作最大连续子数组。比如数组{2,4,-7,5,2,-1,2,-4,3}的最大连续子数组为{5,2,-1,2},最大连续子数组的和为5+2-1+2=8。
#### Python Solution:
**分析:** 剑指 offer 第 42 题, 也是挺经典的动态规划,也可以理解为贪心算法。
```Python
class Solution(object):
def maxSubArray(self, nums):
better = Max = float('-inf')
for num in nums:
better = max(num, num + better)
Max = max(Max, better)
return Max
```
[返回目录](#308)
---
### 最长不含重复字符的子字符串
#### 题目描述
给定一个字符串,找到最长子字符串的长度而不重复字符。
#### Python Solution:
**分析:** 滑动窗口解决问题,如果遍历一遍 s,如果遍历到没有出现的元素,窗口右端立马扩张,并计算最大长度。如果遍历到之前出现的元素,则将窗口左端置为上次出现的位置的后一位。只有出现没有遍历过的元素才会计算最大长度。因为一旦是遍历过的元素,只有可能是保持不变或者缩小。
```Python
class Solution:
def longestSubstringWithoutDuplication(self, s):
start = maxlength = 0
met = {}
for i, v in enumerate(s):
if v in met and start <= met[v]: # 更新start 的位置。
start = met[v] + 1
else: # 只有没有遍历过的才会有更大的长度,所以在 else 里判断就可以了
maxlength = max(maxlength, i - start + 1)
met[v] = i # 更新 v 出现的索引
return maxlength
```
[返回目录](#309)
---
### 最长公共子序列
#### 题目描述
给定两个字符串,求最长公共子序列的长度。
#### Python Solution:
**分析:** 字符串的动态规划问题,比较简单的一种,可以简化到一维。
```Python
class Solution:
def longestCommonSubsequence(self, text1: str, text2: str) -> int:
m, n = len(text1), len(text2)
dp = [0] * (n+1)
for i in range(m):
cur = [0] * (n+1)
for j in range(n):
if text1[i] == text2[j]:
cur[j+1] = dp[j] + 1
else:
cur[j+1] = max(cur[j], dp[j+1])
dp = cur
return dp[-1]
```
[返回目录](#310)
---
### 最长递增子序列
#### 题目描述
给定一个未排序的整数数组,请找到最长递增子序列的长度。
#### Python Solution:
**分析:** 非常精彩的题目,常规动态规划解法是 O(n^2) 的时间复杂度,但是用二分搜索可以减少到 O(nlgn),尤其是迭代更新的部分需要好好品味下。
```python
class Solution:
def lengthOfLIS(self, nums: List[int]) -> int:
dp = [1] * len(nums)
for i in range(1, len(nums)):
for j in range(1, i+1):
if nums[i] > nums[i-j]:
dp[i] = max(dp[i], dp[i-j]+1)
return max(dp) if dp else 0
```
**O(nlgn)的解法**
```python
class Solution:
def lengthOfLIS(self, nums: List[int]) -> int:
if len(nums) < 2:
return len(nums)
dp = [nums[0]]
for n in nums[1:]:
if n > dp[-1]:
dp.append(n)
else:
pos = self.binarysearch(dp, n)
dp[pos] = n
return len(dp)
def binarysearch(self, dp, n): # 二分搜索法比较好的写法,可以参考下。
lo, hi = 0, len(dp) - 1
while lo < hi:
mid = (lo + hi) // 2
if dp[mid] < n:
lo = mid + 1
else:
hi = mid
return lo
```
[返回目录](#311)
---
### 矩阵中最长递增路径
#### 题目
给定一个整数矩阵,找到最长的增长路径的长度。 在每个单元格中,您可以向四个方向移动:向左,向右,向上或向下。 您不得对角移动或移动到边界之外(即不允许环绕)。
#### 解法
**分析:** 记忆化 DFS ,第一次接触的话想不到,不过接触过就很简单。
```python
class Solution:
def longestIncreasingPath(self, matrix: List[List[int]]) -> int:
def dfs(i, j):
if not dp[i][j]:
val = matrix[i][j]
dp[i][j] = 1 + max(
dfs(i - 1, j) if i and val < matrix[i - 1][j] else 0,
dfs(i + 1, j) if i < m - 1 and val < matrix[i + 1][j] else 0,
dfs(i, j - 1) if j and val < matrix[i][j - 1] else 0,
dfs(i, j + 1) if j < n - 1 and val < matrix[i][j + 1] else 0)
return dp[i][j]
if not matrix or not matrix[0]:
return 0
m, n = len(matrix), len(matrix[0])
dp = [[0] * n for _ in range(m)]
return max(dfs(x, y) for x in range(m) for y in range(n))
```
[返回目录](#312)
---
### 搜索排序数组的插入位置
#### 题目
给定排序数组和目标值,如果找到目标,则返回索引。如果不是,则返回按顺序插入索引的位置的索引。 您可以假设阵列中没有重复项。
#### 解法
**分析:** 重点是 hi 的取值是 len(nums), 目的是可以插入到最后的位置。
```python
class Solution:
def searchInsert(self, nums: List[int], target: int) -> int:
lo, hi = 0, len(nums)
while lo < hi:
mid = (lo + hi) // 2
if nums[mid] < target:
lo = mid + 1
else:
hi = mid
return lo
```
[返回目录](#401)
---
### 数字在数组中的位置
#### 题目
给定一个以升序排列的整数nums数组,请找到给定目标值的开始和结束位置。 算法的运行时复杂度必须为O(log n)的量级。 如果在数组中找不到目标,则返回[-1,-1]。
#### 解法
**分析:** 归并的思想,分解成小问题再解决。
```python
class Solution:
def searchRange(self, nums: List[int], target: int) -> List[int]:
if not nums: return [-1, -1]
def search(lo, hi):
if nums[lo] == target == nums[hi]:
return [lo, hi]
if nums[lo] <= target <= nums[hi]:
mid = (lo + hi) // 2
l, r = search(lo, mid), search(mid+1, hi)
return max(l, r) if -1 in l+r else [l[0], r[1]]
return [-1, -1]
return search(0, len(nums)-1)
```