-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1185 lines (711 loc) · 33.8 KB
/
index.html
File metadata and controls
1185 lines (711 loc) · 33.8 KB
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 lang="en">
<!-- Head tag -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="google-site-verification" content="xBT4GhYoi5qRD5tr338pgPM5OWHHIDR6mNg1a3euekI" />
<meta name="baidu-site-verification" content="093lY4ziMu" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="description" content="Colin-Jay's Blogs">
<meta name="keyword" content="Colin-Jay, Blogs">
<link rel="shortcut icon" href="/img/tortoise_cartoon.png">
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
<!--<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>-->
<title>
Colin-Jay's Blogs
</title>
<link rel="canonical" href="https://Colin-Jay.cn/">
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="/css/dusign-light.css">
<link rel="stylesheet" href="/css/dusign-common-light.css">
<link rel="stylesheet" href="/css/font-awesome.css">
<link rel="stylesheet" href="/css/toc.css">
<!-- background effects end -->
<!-- Pygments Highlight CSS -->
<link rel="stylesheet" href="/css/highlight.css">
<link rel="stylesheet" href="/css/widget.css">
<link rel="stylesheet" href="/css/rocket.css">
<link rel="stylesheet" href="/css/signature.css">
<link rel="stylesheet" href="/css/fonts.googleapis.css">
<link rel="stylesheet" href="//cdn.bootcss.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- photography -->
<link rel="stylesheet" href="/css/photography.css">
<!-- ga & ba script hoook -->
<script></script>
<meta name="generator" content="Hexo 4.2.0"></head>
<!-- hack iOS CSS :active style -->
<body ontouchstart="">
<!-- background effects start -->
<!-- background effects end -->
<!-- Modified by Yu-Hsuan Yen -->
<!-- Post Header -->
<style type="text/css">
header.intro-header{
background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/img/header_img/home-bg-1-dark.jpg')
/*config*/
}
#signature{
background-image: url('/img/signature/Just-do-it-white.png');
}
</style>
<header class="intro-header" >
<!-- Signature -->
<div id="signature">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="site-heading">
<h1>Colin Jay</h1>
<!--<hr class="small">-->
<span id="subdusi" class="subheading">Hi, I'm Colin Jay. Welcome to my personal blog. ^_^</span>
</div>
</div>
</div>
</div>
</div>
<div class="waveWrapper">
<div class="wave wave_before" style="background-image: url('/img/wave-light.png')"></div>
<div class="wave wave_after" style="background-image: url('/img/wave-light.png')"></div>
</div>
</header>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Colin Jay</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- Known Issue, found by Hux:
<nav>'s height woule be hold on by its content.
so, when navbar scale out, the <nav> will cover tags.
also mask any touch event of tags, unfortunately.
-->
<div id="huxblog_navbar">
<div class="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/about/">About</a>
</li>
<li>
<a href="/archive/">Archives</a>
</li>
<li>
<a href="/categories/">Categories</a>
</li>
<li>
<a href="/tags/">Tags</a>
</li>
<li>
<a href="/photography/">Photography</a>
</li>
<li>
<a href="https://me.csdn.net/qq_42007035" target="_blank">CSDN</a>
</li>
</ul>
</div>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<script>
// Drop Bootstarp low-performance Navbar
// Use customize navbar with high-quality material design animation
// in high-perf jank-free CSS3 implementation
var $body = document.body;
var $toggle = document.querySelector('.navbar-toggle');
var $navbar = document.querySelector('#huxblog_navbar');
var $collapse = document.querySelector('.navbar-collapse');
$toggle.addEventListener('click', handleMagic)
function handleMagic(e){
if ($navbar.className.indexOf('in') > 0) {
// CLOSE
$navbar.className = " ";
// wait until animation end.
setTimeout(function(){
// prevent frequently toggle
if($navbar.className.indexOf('in') < 0) {
$collapse.style.height = "0px"
}
},400)
}else{
// OPEN
$collapse.style.height = "auto"
$navbar.className += " in";
}
}
</script>
<!-- Main Content -->
<!-- Main Content -->
<div class="container">
<div class="row">
<!-- Post Container -->
<div class="
col-lg-8 col-lg-offset-1
col-md-8 col-md-offset-1
col-sm-12
col-xs-12
post-container
">
<!-- Top -->
<!-- Main Content -->
<div class="post-preview">
<a href="/2020/10/08/PAT-AdvancedLevel1066/">
<h2 class="post-title">
【个人代码及思路】PAT甲级:1066 Root of AVL Tree (25分)
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
PAT (Advanced Level) Practice1066 Root of AVL Tree (25分)An AVL tree is a self-balancing binary search tree. In an AVL tree, the heights of the two child subtrees of any node differ by at most one; ......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Colin-Jay on
2020-10-08
</p>
<div class="tags">
<a href="/tags/#pat" title="pat">pat</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/09/25/PAT-AdvancedLevel1060/">
<h2 class="post-title">
【个人代码及思路】PAT甲级:1060 Are They Equal (25分)
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
PAT (Advanced Level) Practice1060 Are They Equal (25分)If a machine can save only 3 significant digits, the float numbers 12300 and 12358.9 are considered equal since they are both saved as 0.123×10......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Colin-Jay on
2020-09-25
</p>
<div class="tags">
<a href="/tags/#pat" title="pat">pat</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/09/23/headerFile-algorithm/">
<h2 class="post-title">
【C/C++全套入门攻略】常用头文件下的函数介绍:algorithm
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
[TOC]
常用头文件下的函数介绍:algorithmC语言提供了很多实用的数学函数,如果要使用,需要在程序开头添加头文件cmath或者math.h。
123#include <algorithm>using namespace std;
1. max()、min()和abs() max(x, y)和min(x, y)分别用来返回x和y(同类型)中的最大值和最小值,且参数必须是两......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Colin-Jay on
2020-09-23
</p>
<div class="tags">
<a href="/tags/#note" title="note">note</a>
<a href="/tags/#C/C++" title="C/C++">C/C++</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/09/23/headerFile-Catalog/">
<h2 class="post-title">
【C/C++全套入门攻略】常用头文件下的函数介绍:目录
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
[TOC]
常用头文件下的函数介绍:目录很多常用的函数通常需要添加头文件,下面进行总结常用的头文件下的函数。
本文参考并总结了晴神的《算法笔记》与刘神的《算法竞赛入门经典》中的精华内容,并加入了自己的理解,以实用第一的目的来撰写此文。
1. cmath/math.h【C/C++全套入门攻略】常用头文件下的函数介绍:cmath/math.h
2. cstring/string.h【C/C++全......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Colin-Jay on
2020-09-23
</p>
<div class="tags">
<a href="/tags/#note" title="note">note</a>
<a href="/tags/#C/C++" title="C/C++">C/C++</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/09/23/headerFile-cstring/">
<h2 class="post-title">
【C/C++全套入门攻略】常用头文件下的函数介绍:cstring/string.h
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
[TOC]
常用头文件下的函数介绍:cstring/string.hC语言提供了很多实用的关于字符数组的函数,如果要使用,需要在程序开头添加头文件cstring或者string.h。
123//二者选一#include <cstring>#include <string.h>
1. strlen()strlen(str)用于得到字符数组中第一个\0前的字符个数
2. ......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Colin-Jay on
2020-09-23
</p>
<div class="tags">
<a href="/tags/#note" title="note">note</a>
<a href="/tags/#C/C++" title="C/C++">C/C++</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/09/23/headerFile-cmath/">
<h2 class="post-title">
【C/C++全套入门攻略】常用头文件下的函数介绍:cmath/math.h
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
[TOC]
常用头文件下的函数介绍:cmath/math.hC语言提供了很多实用的数学函数,如果要使用,需要在程序开头添加头文件cmath或者math.h。
123//二者选一#include <cmath>#include <math.h>
1. fabs(double x)用于返回double型变量的绝对值,返回值为double型
2. floor(double ......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Colin-Jay on
2020-09-23
</p>
<div class="tags">
<a href="/tags/#note" title="note">note</a>
<a href="/tags/#C/C++" title="C/C++">C/C++</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/09/23/STL-pair/">
<h2 class="post-title">
【C/C++全套入门攻略】C++标准模板库(STL)用法介绍:pair
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
[TOC]
C++标准模板库(STL)用法介绍:pairpair:可以看作是一个内部有两个元素的结构体,STL容器之一,可以将两个任何基本类型(包括STL容器)绑在一起而不用定义结构体。
使用pair前需要添加:
123#include <utility>using namespace std;
注:由于map的内部实现中涉及pair,因此可以用map头文件来代替utility
......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Colin-Jay on
2020-09-23
</p>
<div class="tags">
<a href="/tags/#note" title="note">note</a>
<a href="/tags/#C/C++" title="C/C++">C/C++</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/09/23/STL-stack/">
<h2 class="post-title">
【C/C++全套入门攻略】C++标准模板库(STL)用法介绍:stack
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
[TOC]
C++标准模板库(STL)用法介绍:stackstack:栈,在STL中主要则是实现了一个后进先出的容器。
使用stack前需要添加:
123#include <stack>using namespace std;
1. stack声明stack是一个模板类,所以使用前需要声明。
声明
1stack<typename> st;
typename可以是任何基......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Colin-Jay on
2020-09-23
</p>
<div class="tags">
<a href="/tags/#note" title="note">note</a>
<a href="/tags/#C/C++" title="C/C++">C/C++</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/09/23/STL-priority-queue/">
<h2 class="post-title">
【C/C++全套入门攻略】C++标准模板库(STL)用法介绍:priority_queue
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
[TOC]
C++标准模板库(STL)用法介绍:priority_queuepriority_queue:优先队列,STL容器之一,底层基于堆进行实现。
使用priority_queue前需要添加:
123#include <queue>using namespace std;
1. priority_queue声明priority_queue是一个模板类,所以使用前需要声明。
......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Colin-Jay on
2020-09-23
</p>
<div class="tags">
<a href="/tags/#note" title="note">note</a>
<a href="/tags/#C/C++" title="C/C++">C/C++</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/2020/09/22/STL-queue/">
<h2 class="post-title">
【C/C++全套入门攻略】C++标准模板库(STL)用法介绍:queue
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
[TOC]
C++标准模板库(STL)用法介绍:queuequeue:队列,在STL中主要则是实现了一个先进先出的容器。
使用queue前需要添加:
123#include <queue>using namespace std;
1. queue声明queue是一个模板类,所以使用前需要声明。
声明
1queue<typename> q;
typename可以是任何基......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by Colin-Jay on
2020-09-22
</p>
<div class="tags">
<a href="/tags/#note" title="note">note</a>
<a href="/tags/#C/C++" title="C/C++">C/C++</a>
</div>
</div>
<hr>
<!-- Pager -->
<ul class="pager">
<li class="next">
<a href="/archives/2/">Older Posts →</a>
</li>
</ul>
</div>
<!-- Sidebar Container -->
<div class="
col-lg-3 col-lg-offset-0
col-md-3 col-md-offset-0
col-sm-12
col-xs-12
sidebar-container
">
<!--
<h5>SEARCH</h5>
<div class="search-article" class="tags">
<input id="search-kw" type="text" name="search_article" placeholder="Enter keywords for search" />
<div class="search-img">
<img
src="/img/search.png"
alt="search"
onMouseOver="this.src='/img/search-focus.png'"
onMouseOut="this.src='/img/search.png'"/>
</div>
</div>-->
<h5>SEARCH</h5>
<div id="site_search">
<div class="form-group">
<input type="text" id="local-search-input" name="q" results="0" placeholder="search" class="st-search-input st-default-search-input form-control"/>
</div>
<div id="local-search-result"></div>
</div>
<hr>
<!-- Featured Tags -->
<section>
<!-- no hr -->
<h5><a href="/tags/">FEATURED TAGS</a></h5>
<div class="tags">
<a href="/tags/#pat" title="pat" rel="22">pat</a>
<a href="/tags/#note" title="note" rel="16">note</a>
<a href="/tags/#C/C++" title="C/C++" rel="13">C/C++</a>
</div>
</section>
<hr>
<!-- Short About -->
<section class="visible-md visible-lg">
<h5><a href="/about/">ABOUT ME</a></h5>
<div class="short-about">
<img id = "avatar_pic" src="/img/avatar.jpg" />
<p>Welcome to visit, I'm Colin-Jay!</p>
<!-- SNS Link -->
<ul class="list-inline">
<li>
<a target="_blank" href="https://github.com/Colin-Jay">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://twitter.com/ColinJay16">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://www.facebook.com/colin.jay.1420">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://www.zhihu.com/people/ping-fan-de-jie-er">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-stack-1x fa-inverse">知</i>
</span>
</a>
</li>
</ul>
</div>
</section>
<hr>
<h5>VISITORS</h5>
<div class="widget">
<span>
Viewed <b><i><span id="busuanzi_value_site_pv"><i class="fa fa-spinner fa-spin"></i></span></i></b> Times
</span>
<br/>
<span>
<b><i><span id="busuanzi_value_site_uv"><i class="fa fa-spinner fa-spin"></i></span></i></b> Visitors In Total
</span>
</div>
<hr>
<h5>RECENT POSTS</h5>
<div class="widget">
<ul>
<li>
<a href="/2020/10/08/PAT-AdvancedLevel1066/">【个人代码及思路】PAT甲级:1066 Root of AVL Tree (25分)</a>
</li>
<li>
<a href="/2020/09/25/PAT-AdvancedLevel1060/">【个人代码及思路】PAT甲级:1060 Are They Equal (25分)</a>
</li>
<li>
<a href="/2020/09/23/headerFile-algorithm/">【C/C++全套入门攻略】常用头文件下的函数介绍:algorithm</a>
</li>
<li>
<a href="/2020/09/23/headerFile-Catalog/">【C/C++全套入门攻略】常用头文件下的函数介绍:目录</a>
</li>
<li>
<a href="/2020/09/23/headerFile-cstring/">【C/C++全套入门攻略】常用头文件下的函数介绍:cstring/string.h</a>
</li>
</ul>
</div>
<hr>
<!-- Friends Blog -->
<h5>FRIENDS</h5>
<ul class="list-inline">
<li><a href="#" target="_blank">Colin-Jay's Blog</a></li>
<li><a href="https://joke-lin.top/" target="_blank">Joke-Lin's Blog</a></li>
<li><a href="https://yez-liu.github.io/" target="_blank">YeZ-Liu's Blog</a></li>
<li><a href="http://www.gatesma.cn/" target="_blank">GatesMa's Blog</a></li>
</ul>
<hr>
<h5>ARCHIVES</h5>
<div class="widget">
<ul class="archive-list"><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/10/">October 2020</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/09/">September 2020</a><span class="archive-list-count">20</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/08/">August 2020</a><span class="archive-list-count">6</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/06/">June 2020</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/05/">May 2020</a><span class="archive-list-count">7</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/04/">April 2020</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/02/">February 2020</a><span class="archive-list-count">2</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2019/11/">November 2019</a><span class="archive-list-count">1</span></li></ul>
</div>
<hr>
<!-- Categories -->
<h5>categories</h5>
<div class="widget">
<ul>
<a href="categories/#hexo"><li>hexo</li></a>
<a href="categories/#Code"><li>Code</li></a>
<a href="categories/#Database"><li>Database</li></a>
<a href="categories/#PAT_A"><li>PAT_A</li></a>
<a href="categories/#CompilerPrinciple"><li>CompilerPrinciple</li></a>
<a href="categories/#PAT_B"><li>PAT_B</li></a>
<a href="categories/#SoftwareEngineering"><li>SoftwareEngineering</li></a>
<a href="categories/#C/C++"><li>C/C++</li></a>
</ul>
</div>
<hr>
</div>
</div>
</div>
<!-- Footer -->
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<ul class="list-inline text-center">
<li>
<a target="_blank" href="https://github.com/Colin-Jay">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://twitter.com/ColinJay16">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>