-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1674 lines (1310 loc) · 58.3 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<!-- hexo-inject:begin --><!-- hexo-inject:end --><meta charset="utf-8">
<title>windows 快捷键 | 寻梦乌托邦</title>
<meta name="keywords" content="">
<meta name="description" content="windows 快捷键 | 寻梦乌托邦">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="正直 勇敢 追梦的人">
<meta property="og:type" content="website">
<meta property="og:title" content="分类">
<meta property="og:url" content="http://shunqiang.ml/categories/index.html">
<meta property="og:site_name" content="寻梦乌托邦">
<meta property="og:description" content="正直 勇敢 追梦的人">
<meta property="og:updated_time" content="2017-12-14T07:06:48.000Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="分类">
<meta name="twitter:description" content="正直 勇敢 追梦的人">
<link rel="icon" href="/img/avatar-sun.jpg">
<link href="/css/style.css?v=1.0.1" rel="stylesheet">
<link href="/css/hl_theme/darcula.css?v=1.0.1" rel="stylesheet">
<link href="//cdn.bootcss.com/animate.css/3.5.2/animate.min.css" rel="stylesheet">
<link href="//cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script src="//cdn.bootcss.com/jquery/2.2.4/jquery.min.js"></script>
<script src="/js/jquery.autocomplete.min.js?v=1.0.1" ></script>
<script src="//cdn.bootcss.com/highlight.js/9.12.0/highlight.min.js"></script>
<script>
hljs.initHighlightingOnLoad();
</script>
<script src="//cdn.bootcss.com/nprogress/0.2.0/nprogress.min.js"></script>
<script src="//cdn.bootcss.com/jquery-cookie/1.4.1/jquery.cookie.min.js" ></script>
<script src="/js/iconfont.js?v=1.0.1" ></script><!-- hexo-inject:begin --><!-- hexo-inject:end -->
</head>
<div style="display: none">
<input class="theme_disqus_on" value="false">
<input class="theme_preload_comment" value="false">
<input class="theme_blog_path" value="">
<input id="theme_shortcut" value="false" />
</div>
<body>
<!-- hexo-inject:begin --><!-- hexo-inject:end --><aside class="nav">
<div class="nav-left">
<a href="/" class="avatar_target">
<img class="avatar" src="/img/avatar-sun.jpg" />
</a>
<div class="author">
<span>顺强</span>
</div>
<div class="icon">
</div>
<ul>
<li><div class="all active">全部文章<small>(120)</small></div></li>
<li><div data-rel="深度学习"><i class="fold iconfont icon-right"></i>深度学习<small>(44)</small></div>
<ul class="sub hide">
<li><div data-rel="CV">CV<small>(3)</small></div>
</li>
<li><div data-rel="CNN">CNN<small>(6)</small></div>
</li>
<li><div data-rel="Paper">Paper<small>(8)</small></div>
</li>
<li><div data-rel="NLP">NLP<small>(2)</small></div>
</li>
</ul>
</li>
<li><div data-rel="其他">其他<small>(10)</small></div>
</li>
<li><div data-rel="Algorithm"><i class="fold iconfont icon-right"></i>Algorithm<small>(44)</small></div>
<ul class="sub hide">
<li><div data-rel="Lintcode">Lintcode<small>(3)</small></div>
</li>
<li><div data-rel="Serach">Serach<small>(1)</small></div>
</li>
<li><div data-rel="Sort">Sort<small>(1)</small></div>
</li>
<li><div data-rel="Leetcode">Leetcode<small>(38)</small></div>
</li>
<li><div data-rel="Search">Search<small>(1)</small></div>
</li>
</ul>
</li>
<li><div data-rel="Math">Math<small>(7)</small></div>
</li>
<li><div data-rel="编程语言">编程语言<small>(9)</small></div>
</li>
<li><div data-rel="数据结构">数据结构<small>(3)</small></div>
</li>
</ul>
<div class="left-bottom">
<div class="menus">
</div>
<div><a class="about hasFriend site_url" href="/about">关于</a><a style="width: 50%" class="friends">友链</a></div>
</div>
<input type="hidden" id="yelog_site_posts_number" value="120">
<div style="display: none">
<span id="busuanzi_value_site_uv"></span>
<span id="busuanzi_value_site_pv"></span>
</div>
</div>
<div class="nav-right">
<div class="friends-area">
<div class="friends-title">
友情链接
<i class="back-title-list"></i>
</div>
<div class="friends-content">
<ul>
</ul>
</div>
</div>
<div class="title-list">
<form onkeydown="if(event.keyCode === 13){return false;}">
<input id="local-search-input" class="search" type="text" placeholder="Search..." />
<i class="cross"></i>
<span>
<label for="tagswitch">Tags:</label>
<input id="tagswitch" type="checkbox" style="display: none" />
<i id="tagsWitchIcon"></i>
</span>
</form>
<div class="tags-list">
<li class="article-tag-list-item">
<a class="color4">BFS</a>
</li>
<li class="article-tag-list-item">
<a class="color2">points</a>
</li>
<li class="article-tag-list-item">
<a class="color4">LinkList</a>
</li>
<li class="article-tag-list-item">
<a class="color1">stack</a>
</li>
<li class="article-tag-list-item">
<a class="color5">Dynamic Programming</a>
</li>
<li class="article-tag-list-item">
<a class="color5">Hard</a>
</li>
<li class="article-tag-list-item">
<a class="color4">Binary Search</a>
</li>
<li class="article-tag-list-item">
<a class="color3">Graph Theory</a>
</li>
<li class="article-tag-list-item">
<a class="color5">quicksort</a>
</li>
<li class="article-tag-list-item">
<a class="color5">Data Structure</a>
</li>
<li class="article-tag-list-item">
<a class="color4">DFS</a>
</li>
<li class="article-tag-list-item">
<a class="color1">insertsort</a>
</li>
<li class="article-tag-list-item">
<a class="color2">distributed</a>
</li>
<div class="clearfix"></div>
</div>
<nav id="title-list-nav">
<a class="深度学习 "
href="/baiduai/"
data-tag=""
data-author="" >
<span class="post-title" title="2020 百度 AI">2020 百度 AI</span>
<span class="post-date" title="2019-12-18 23:59:00">2019/12/18</span>
</a>
<a id="top" class=""
href="/about/"
data-tag=""
data-author="" >
<span class="post-title" title="关于我">关于我</span>
<span class="post-date" title="2019-11-01 09:36:58">2019/11/01</span>
</a>
<a class="其他 "
href="/colab-offline/"
data-tag=""
data-author="" >
<span class="post-title" title="Colab 笔记">Colab 笔记</span>
<span class="post-date" title="2018-10-28 23:59:00">2018/10/28</span>
</a>
<a class="深度学习 "
href="/cv-task/"
data-tag=""
data-author="" >
<span class="post-title" title="CV Tasks">CV Tasks</span>
<span class="post-date" title="2019-12-01 23:59:00">2019/12/01</span>
</a>
<a class="深度学习 "
href="/deep-learning-start/"
data-tag=""
data-author="" >
<span class="post-title" title="深度学习">深度学习</span>
<span class="post-date" title="2019-02-18 23:59:00">2019/02/18</span>
</a>
<a class="其他 "
href="/git-note/"
data-tag=""
data-author="" >
<span class="post-title" title="Git 笔记">Git 笔记</span>
<span class="post-date" title="2015-02-16 01:20:12">2015/02/16</span>
</a>
<a class="其他 "
href="/hexo-troubleshoot/"
data-tag=""
data-author="" >
<span class="post-title" title="Hexo troubleshooting">Hexo troubleshooting</span>
<span class="post-date" title="2015-02-01 23:59:00">2015/02/01</span>
</a>
<a class="深度学习 "
href="/image-caption/"
data-tag=""
data-author="" >
<span class="post-title" title="image-caption">image-caption</span>
<span class="post-date" title="2020-02-03 23:59:00">2020/02/03</span>
</a>
<a class="深度学习 "
href="/kalman-filter/"
data-tag=""
data-author="" >
<span class="post-title" title="Kalman Filter">Kalman Filter</span>
<span class="post-date" title="2020-04-13 23:59:00">2020/04/13</span>
</a>
<a class="深度学习 CV "
href="/lane-summary/"
data-tag=""
data-author="" >
<span class="post-title" title="车道线项目总结">车道线项目总结</span>
<span class="post-date" title="2020-03-23 23:59:00">2020/03/23</span>
</a>
<a class="其他 "
href="/license/"
data-tag=""
data-author="" >
<span class="post-title" title="license">license</span>
<span class="post-date" title="2018-09-15 23:59:00">2018/09/15</span>
</a>
<a class="其他 "
href="/linux-note/"
data-tag=""
data-author="" >
<span class="post-title" title="Linux 笔记">Linux 笔记</span>
<span class="post-date" title="2015-01-06 01:20:12">2015/01/06</span>
</a>
<a class="其他 "
href="/markdown/"
data-tag=""
data-author="" >
<span class="post-title" title="MARKDOWN 小知识">MARKDOWN 小知识</span>
<span class="post-date" title="2017-12-18 23:59:00">2017/12/18</span>
</a>
<a class="Algorithm Lintcode "
href="/maximum-number/"
data-tag=""
data-author="" >
<span class="post-title" title="585. Maximum Number in Mountain Sequence">585. Maximum Number in Mountain Sequence</span>
<span class="post-date" title="2019-09-17 23:59:00">2019/09/17</span>
</a>
<a class=""
href="/resume/"
data-tag=""
data-author="" >
<span class="post-title" title="简介">简介</span>
<span class="post-date" title="2020-05-12 23:59:00">2020/05/12</span>
</a>
<a class="其他 "
href="/widows-keybord-shortcut/"
data-tag=""
data-author="" >
<span class="post-title" title="windows 快捷键">windows 快捷键</span>
<span class="post-date" title="2015-04-21 23:59:00">2015/04/21</span>
</a>
<a class="Math "
href="/advanced-mathematics-double-integral/"
data-tag=""
data-author="" >
<span class="post-title" title="二重积分">二重积分</span>
<span class="post-date" title="2019-04-01 23:59:00">2019/04/01</span>
</a>
<a class="Math "
href="/advanced-mathematics-calculus-english/"
data-tag=""
data-author="" >
<span class="post-title" title="微积分术语中英文对照">微积分术语中英文对照</span>
<span class="post-date" title="2018-09-21 23:59:00">2018/09/21</span>
</a>
<a class="Math "
href="/advanced-mathematics-function/"
data-tag=""
data-author="" >
<span class="post-title" title="函数的凹凸性">函数的凹凸性</span>
<span class="post-date" title="2017-04-01 23:59:00">2017/04/01</span>
</a>
<a class="Math "
href="/advanced-mathematics-matrix/"
data-tag=""
data-author="" >
<span class="post-title" title="矩阵">矩阵</span>
<span class="post-date" title="2019-05-11 23:59:00">2019/05/11</span>
</a>
<a class="Math "
href="/advanced-mathematics-proof/"
data-tag=""
data-author="" >
<span class="post-title" title="角度证明题">角度证明题</span>
<span class="post-date" title="2015-06-18 23:59:00">2015/06/18</span>
</a>
<a class="深度学习 "
href="/ai-detect-3-stages/"
data-tag=""
data-author="" >
<span class="post-title" title="Detection-3 Stages">Detection-3 Stages</span>
<span class="post-date" title="2020-05-20 23:59:00">2020/05/20</span>
</a>
<a class="Algorithm Serach "
href="/algorithm-search/"
data-tag=""
data-author="" >
<span class="post-title" title="查找">查找</span>
<span class="post-date" title="2019-09-14 23:59:00">2019/09/14</span>
</a>
<a class="Algorithm Sort "
href="/algorithm-sort-algorithm/"
data-tag=""
data-author="" >
<span class="post-title" title="排序算法">排序算法</span>
<span class="post-date" title="2019-09-02 23:59:00">2019/09/02</span>
</a>
<a class="编程语言 "
href="/c-cpp/"
data-tag=""
data-author="" >
<span class="post-title" title="C++ 程序设计(面向对象进阶)">C++ 程序设计(面向对象进阶)</span>
<span class="post-date" title="2020-02-24 23:59:00">2020/02/24</span>
</a>
<a class="深度学习 "
href="/cnn-activate-function/"
data-tag=""
data-author="" >
<span class="post-title" title="激活函数">激活函数</span>
<span class="post-date" title="2019-02-02 23:59:00">2019/02/02</span>
</a>
<a class="深度学习 CV "
href="/cnn-bias-variance/"
data-tag=""
data-author="" >
<span class="post-title" title="偏差和方差(bias variance)过拟合 欠拟合(underfit overfit)">偏差和方差(bias variance)过拟合 欠拟合(underfit overfit)</span>
<span class="post-date" title="2019-02-01 23:59:00">2019/02/01</span>
</a>
<a class="深度学习 CNN "
href="/cnn-bilinear-convtranspose/"
data-tag=""
data-author="" >
<span class="post-title" title="双线性插值和转置卷积">双线性插值和转置卷积</span>
<span class="post-date" title="2018-03-11 23:59:00">2018/03/11</span>
</a>
<a class="深度学习 "
href="/cnn-bn/"
data-tag=""
data-author="" >
<span class="post-title" title="Batch Normalization">Batch Normalization</span>
<span class="post-date" title="2019-12-18 23:59:00">2019/12/18</span>
</a>
<a class="深度学习 CNN "
href="/cnn-cnn/"
data-tag=""
data-author="" >
<span class="post-title" title="Convolution Nerture Network">Convolution Nerture Network</span>
<span class="post-date" title="2019-01-18 23:59:00">2019/01/18</span>
</a>
<a class="深度学习 CNN "
href="/cnn-convolution/"
data-tag=""
data-author="" >
<span class="post-title" title="卷积">卷积</span>
<span class="post-date" title="2019-06-11 23:59:00">2019/06/11</span>
</a>
<a class="深度学习 CV "
href="/cnn-data-augmentation/"
data-tag=""
data-author="" >
<span class="post-title" title="数据增强 Data Augmentation">数据增强 Data Augmentation</span>
<span class="post-date" title="2019-12-22 23:59:00">2019/12/22</span>
</a>
<a class="深度学习 "
href="/cnn-eval/"
data-tag=""
data-author="" >
<span class="post-title" title="评估标准">评估标准</span>
<span class="post-date" title="2019-01-20 23:59:00">2019/01/20</span>
</a>
<a class="深度学习 "
href="/cnn-inception/"
data-tag=""
data-author="" >
<span class="post-title" title="Inception">Inception</span>
<span class="post-date" title="2019-12-25 23:59:00">2019/12/25</span>
</a>
<a class="深度学习 "
href="/cnn-kcf/"
data-tag=""
data-author="" >
<span class="post-title" title="Kernel Correlation Filter">Kernel Correlation Filter</span>
<span class="post-date" title="2015-04-18 23:59:00">2015/04/18</span>
</a>
<a class="深度学习 "
href="/cnn-learning-rate/"
data-tag=""
data-author="" >
<span class="post-title" title="深度学习超参数">深度学习超参数</span>
<span class="post-date" title="2019-02-21 23:59:00">2019/02/21</span>
</a>
<a class="深度学习 "
href="/cnn-linear-regression/"
data-tag=""
data-author="" >
<span class="post-title" title="线性回归 Linear Regression">线性回归 Linear Regression</span>
<span class="post-date" title="2019-12-06 01:20:12">2019/12/06</span>
</a>
<a class="深度学习 "
href="/cnn-loss-function/"
data-tag=""
data-author="" >
<span class="post-title" title="Loss 损失函数">Loss 损失函数</span>
<span class="post-date" title="2019-03-05 23:59:00">2019/03/05</span>
</a>
<a class="深度学习 Paper "
href="/cnn-mobilenet/"
data-tag=""
data-author="" >
<span class="post-title" title="MobileNet">MobileNet</span>
<span class="post-date" title="2019-12-13 23:59:00">2019/12/13</span>
</a>
<a class="深度学习 "
href="/cnn-nn-tricks/"
data-tag=""
data-author="" >
<span class="post-title" title="图像分割技巧总结">图像分割技巧总结</span>
<span class="post-date" title="2020-03-18 23:59:00">2020/03/18</span>
</a>
<a class="深度学习 "
href="/cnn-optimization-algorithm/"
data-tag=""
data-author="" >
<span class="post-title" title="优化算法">优化算法</span>
<span class="post-date" title="2020-03-23 23:59:00">2020/03/23</span>
</a>
<a class="深度学习 CNN "
href="/cnn-pooling/"
data-tag=""
data-author="" >
<span class="post-title" title="池化层">池化层</span>
<span class="post-date" title="2019-10-12 23:59:00">2019/10/12</span>
</a>
<a class="深度学习 CNN "
href="/cnn-receptive-field/"
data-tag=""
data-author="" >
<span class="post-title" title="感受野">感受野</span>
<span class="post-date" title="2019-01-18 23:59:00">2019/01/18</span>
</a>
<a class="深度学习 "
href="/cnn-rethink-relu-to/"
data-tag=""
data-author="" >
<span class="post-title" title="Rethinking ReLU to Train Better CNNs">Rethinking ReLU to Train Better CNNs</span>
<span class="post-date" title="2015-02-01 23:59:00">2015/02/01</span>
</a>
<a class="深度学习 "
href="/cnn-tracking-system/"
data-tag=""
data-author="" >
<span class="post-title" title="Tracking System">Tracking System</span>
<span class="post-date" title="2020-04-15 23:59:00">2020/04/15</span>
</a>
<a class="深度学习 CNN "
href="/cnn-what-is-torchnn-53/"
data-tag=""
data-author="" >
<span class="post-title" title="torch.nn 到底是什么?">torch.nn 到底是什么?</span>
<span class="post-date" title="2019-12-28 23:59:00">2019/12/28</span>
</a>
<a class="深度学习 Paper "
href="/cnn-xception/"
data-tag=""
data-author="" >
<span class="post-title" title="Xception">Xception</span>
<span class="post-date" title="2019-02-14 23:59:00">2019/02/14</span>
</a>
<a class="深度学习 "
href="/cnn-yolov2/"
data-tag=""
data-author="" >
<span class="post-title" title="YOLO9000 Better, Faster, Stronger">YOLO9000 Better, Faster, Stronger</span>
<span class="post-date" title="2020-03-18 23:59:00">2020/03/18</span>
</a>
<a class="数据结构 "
href="/data-structure-gragh/"
data-tag=""
data-author="" >
<span class="post-title" title="图">图</span>
<span class="post-date" title="2019-10-15 23:59:00">2019/10/15</span>
</a>
<a class="数据结构 "
href="/data-structure-linear-list/"
data-tag=""
data-author="" >
<span class="post-title" title="线性表">线性表</span>
<span class="post-date" title="2019-09-05 23:59:00">2019/09/05</span>
</a>
<a class="数据结构 "
href="/data-structure-tree/"
data-tag=""
data-author="" >
<span class="post-title" title="Tree">Tree</span>
<span class="post-date" title="2015-04-18 23:59:00">2015/04/18</span>
</a>
<a class="其他 "
href="/english-eg-word/"
data-tag=""
data-author="" >
<span class="post-title" title="英语词根词缀">英语词根词缀</span>
<span class="post-date" title="2019-11-18 23:59:00">2019/11/18</span>
</a>
<a class="其他 "
href="/keybord-shortcut-chrome-ketbord-shutcut/"
data-tag=""
data-author="" >
<span class="post-title" title="chrome 快捷键">chrome 快捷键</span>
<span class="post-date" title="2015-04-21 23:59:00">2015/04/21</span>
</a>
<a class="其他 "
href="/keybord-shortcut-widows-keybord-shortcut/"
data-tag=""
data-author="" >
<span class="post-title" title="windows 快捷键">windows 快捷键</span>
<span class="post-date" title="2019-04-21 23:59:00">2019/04/21</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-102-binary-tree-level/"
data-tag="BFS"
data-author="" >
<span class="post-title" title="102. Binary Tree Level Order Traversal">102. Binary Tree Level Order Traversal</span>
<span class="post-date" title="2020-04-13 23:59:00">2020/04/13</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-104-leetcode/"
data-tag=""
data-author="" >
<span class="post-title" title="104. Maximum Depth of Binary Tree">104. Maximum Depth of Binary Tree</span>
<span class="post-date" title="2019-11-18 23:59:00">2019/11/18</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-114-flatten-binary-tree-to-linked-list/"
data-tag="points,LinkList,stack"
data-author="" >
<span class="post-title" title="114. Flatten Binary Tree to Linked List">114. Flatten Binary Tree to Linked List</span>
<span class="post-date" title="2020-04-30 23:59:00">2020/04/30</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-125-valid-palindrome/"
data-tag=""
data-author="" >
<span class="post-title" title="125. Valid Palindrome">125. Valid Palindrome</span>
<span class="post-date" title="2019-10-16 23:59:00">2019/10/16</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-1406-stone-game-3/"
data-tag="Dynamic Programming,Hard"
data-author="" >
<span class="post-title" title="1406. Stone Game III">1406. Stone Game III</span>
<span class="post-date" title="2019-08-18 23:59:00">2019/08/18</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-162-find-peak-el/"
data-tag="Binary Search"
data-author="" >
<span class="post-title" title="162. Find Peak Element">162. Find Peak Element</span>
<span class="post-date" title="2020-01-13 23:59:00">2020/01/13</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-198-house-rob/"
data-tag="Dynamic Programming"
data-author="" >
<span class="post-title" title="198. House Robber">198. House Robber</span>
<span class="post-date" title="2019-08-18 23:59:00">2019/08/18</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-200-number-of-islands/"
data-tag="BFS,Graph Theory"
data-author="" >
<span class="post-title" title="200. Number of Islands">200. Number of Islands</span>
<span class="post-date" title="2019-04-21 23:59:00">2019/04/21</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-215-kth-largest/"
data-tag="quicksort"
data-author="" >
<span class="post-title" title="215. Kth Largest Element in an Array">215. Kth Largest Element in an Array</span>
<span class="post-date" title="2020-04-10 01:20:12">2020/04/10</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-240-search-a-2D-m-2/"
data-tag="Binary Search"
data-author="" >
<span class="post-title" title="240. Search a 2D Matrix II">240. Search a 2D Matrix II</span>
<span class="post-date" title="2019-04-03 23:59:00">2019/04/03</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-27-remove-elment/"
data-tag=""
data-author="" >
<span class="post-title" title="27. Remove Element">27. Remove Element</span>
<span class="post-date" title="2020-04-25 23:59:00">2020/04/25</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-28-implement-str/"
data-tag=""
data-author="" >
<span class="post-title" title="28. Implement strStr()">28. Implement strStr()</span>
<span class="post-date" title="2019-12-27 23:59:00">2019/12/27</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-283-move-zeros/"
data-tag=""
data-author="" >
<span class="post-title" title="283. Move Zeroes">283. Move Zeroes</span>
<span class="post-date" title="2019-09-02 23:59:00">2019/09/02</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-322-coin-change/"
data-tag="Dynamic Programming"
data-author="" >
<span class="post-title" title="322. Coin Change">322. Coin Change</span>
<span class="post-date" title="2019-08-18 23:59:00">2019/08/18</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-35-search-insert-p/"
data-tag="Binary Search"
data-author="" >
<span class="post-title" title="35. Search Insert Position">35. Search Insert Position</span>
<span class="post-date" title="2020-03-01 23:59:00">2020/03/01</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-409-longest-palindrome/"
data-tag=""
data-author="" >
<span class="post-title" title="409. Longest Palindrome">409. Longest Palindrome</span>
<span class="post-date" title="2017-11-01 23:59:00">2017/11/01</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-438-find-all-anagrams-in-a-string/"
data-tag=""
data-author="" >
<span class="post-title" title="438. Find All Anagrams in a String">438. Find All Anagrams in a String</span>
<span class="post-date" title="2020-04-30 23:59:00">2020/04/30</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-455-assign-cookies/"
data-tag=""
data-author="" >
<span class="post-title" title="455. Assign Cookies 贪心算法">455. Assign Cookies 贪心算法</span>
<span class="post-date" title="2019-12-11 23:59:00">2019/12/11</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-5-longest-palindromic-substring/"
data-tag=""
data-author="" >
<span class="post-title" title="5. Longest Palindromic Substring">5. Longest Palindromic Substring</span>
<span class="post-date" title="2019-11-23 23:59:00">2019/11/23</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-50-pow/"
data-tag="Binary Search"
data-author="" >
<span class="post-title" title="50. Pow(x, n)">50. Pow(x, n)</span>
<span class="post-date" title="2020-04-13 23:59:00">2020/04/13</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-516-longest-palindrome-subsequence/"
data-tag=""
data-author="" >
<span class="post-title" title="516. Longest Palindrome Subsequence">516. Longest Palindrome Subsequence</span>
<span class="post-date" title="2018-02-01 23:59:00">2018/02/01</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-53-maximum-subarray/"
data-tag="Dynamic Programming,Data Structure"
data-author="" >
<span class="post-title" title="53. Maximum Subarray">53. Maximum Subarray</span>
<span class="post-date" title="2020-04-22 23:59:00">2020/04/22</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-55-jump-game/"
data-tag="Dynamic Programming"
data-author="" >
<span class="post-title" title="55. Jump Game">55. Jump Game</span>
<span class="post-date" title="2019-08-18 23:59:00">2019/08/18</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-56-merge-intervals/"
data-tag=""
data-author="" >
<span class="post-title" title="56. Merge Intervals">56. Merge Intervals</span>
<span class="post-date" title="2019-09-02 23:59:00">2019/09/02</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-560-subarray-sum-equals-k/"
data-tag=""
data-author="" >
<span class="post-title" title="560. Subarray Sum Equals K">560. Subarray Sum Equals K</span>
<span class="post-date" title="2020-04-13 23:59:00">2020/04/13</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-62-unique-paths/"
data-tag="Dynamic Programming"
data-author="" >
<span class="post-title" title="62. Unique Paths">62. Unique Paths</span>
<span class="post-date" title="2020-04-16 23:59:00">2020/04/16</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-64-min-path-sun/"
data-tag="Dynamic Programming"
data-author="" >
<span class="post-title" title="64. Minimum Path Sum">64. Minimum Path Sum</span>
<span class="post-date" title="2019-07-21 23:59:00">2019/07/21</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-67-add-binary/"
data-tag=""
data-author="" >
<span class="post-title" title="67. Add Binary">67. Add Binary</span>
<span class="post-date" title="2020-05-12 23:59:00">2020/05/12</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-674-longest-continues-increasing-subsequence/"
data-tag=""
data-author="" >
<span class="post-title" title="674. Longest Continuous Increasing Subsequence">674. Longest Continuous Increasing Subsequence</span>
<span class="post-date" title="2020-04-29 23:59:00">2020/04/29</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-685-find-k-closest-elements/"
data-tag="Binary Search"
data-author="" >
<span class="post-title" title="658. Find K Closest Elements">658. Find K Closest Elements</span>
<span class="post-date" title="2020-04-12 23:59:00">2020/04/12</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-69-combination-sum/"
data-tag="DFS"
data-author="" >
<span class="post-title" title="69. Combination Sum">69. Combination Sum</span>
<span class="post-date" title="2019-09-18 23:59:00">2019/09/18</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-74-search-a-2d-m/"
data-tag="Binary Search"
data-author="" >
<span class="post-title" title="74. Search a 2D Matrix">74. Search a 2D Matrix</span>
<span class="post-date" title="2020-04-13 23:59:00">2020/04/13</span>
</a>
<a class="Algorithm Lintcode "
href="/leetcode-767-reverse-array/"
data-tag="points"
data-author="" >
<span class="post-title" title="767. Reverse Array">767. Reverse Array</span>
<span class="post-date" title="2020-04-30 23:59:00">2020/04/30</span>
</a>
<a class="Algorithm Leetcode "
href="/leetcode-88-merge-sorted-array/"
data-tag="insertsort"
data-author="" >
<span class="post-title" title="88. Merge Sorted Array">88. Merge Sorted Array</span>