-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1055 lines (596 loc) · 26.7 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>
<meta charset="utf-8">
<title>Bowlmeat's Blogs</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="Actions speak louder than words">
<meta property="og:type" content="website">
<meta property="og:title" content="Bowlmeat's Blogs">
<meta property="og:url" content="https://bowlmeat.github.io/index.html">
<meta property="og:site_name" content="Bowlmeat's Blogs">
<meta property="og:description" content="Actions speak louder than words">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="bowlmeat">
<meta name="twitter:card" content="summary">
<link rel="alternate" href="/atom.xml" title="Bowlmeat's Blogs" type="application/atom+xml">
<link rel="icon" href="/css/images/mylogoo.jpg">
<link rel="apple-touch-icon" href="/css/images/mylogoo.jpg">
<link href="//fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Montserrat:700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic" rel="stylesheet" type="text/css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<style type="text/css">
@font-face{font-family:futura-pt; src:url("/css/fonts/FuturaPTBold.otf") format("woff");font-weight:500;font-style:normal;}
@font-face{font-family:futura-pt-light; src:url("/css/fonts/FuturaPTBook.otf") format("woff");font-weight:lighter;font-style:normal;}
@font-face{font-family:futura-pt-italic; src:url("/css/fonts/FuturaPTBookOblique.otf") format("woff");font-weight:400;font-style:italic;}
}
</style>
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/bootstrap.js"></script>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="/css/bootstrap.css" >
<link rel="stylesheet" href="/css/home.css" >
<link rel="stylesheet" href="/css/vdonate.css" >
<meta name="generator" content="Hexo 5.4.0"></head>
<body>
<header id="header">
<!-- 背景图模式 -->
<div id="intrologo" class="intro-logo" style="background-position:center; background-repeat:no-repeat; background-image: url(); background-size: auto 100%;">
<!-- Support rolling -->
<section class="awSlider">
<div class="carousel slide carousel-fade " data-ride="carousel">
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img id="carousel-img0" src="/css/images/home-bgg.jpg">
</div>
<!-- 自适应大图 -->
<script>
var img0 = new Image();
var imageTag0 = document.getElementById("carousel-img0");
img0.src = imageTag0.src;
img0.onload=function(){
if (img0.width / img0.height <= document.body.clientWidth / document.body.clientHeight) {
imageTag0.style.width = document.body.clientWidth + "px";
} else {
imageTag0.style.height = document.body.clientHeight + "px";
imageTag0.style.marginLeft = -(document.body.clientHeight * img0.width / img0.height - document.body.clientWidth) / 2 + "px";
}
};
</script>
<div class="item">
<img id="carousel-img1" src="/css/images/samplee.jpg">
</div>
<!-- 自适应大图 -->
<script>
var img1 = new Image();
var imageTag1 = document.getElementById("carousel-img1");
img1.src = imageTag1.src;
img1.onload=function(){
if (img1.width / img1.height <= document.body.clientWidth / document.body.clientHeight) {
imageTag1.style.width = document.body.clientWidth + "px";
} else {
imageTag1.style.height = document.body.clientHeight + "px";
imageTag1.style.marginLeft = -(document.body.clientHeight * img1.width / img1.height - document.body.clientWidth) / 2 + "px";
}
};
</script>
</div>
<!-- Controls -->
<a class="left carousel-control" href=".carousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Geri</span>
</a>
<a class="right carousel-control" href=".carousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">İleri</span>
</a>
</div>
</section>
<script>
$('section.awSlider .carousel').carousel({
pause: '',
interval: 5000
});
var startImage = $('section.awSlider .item.active > img').attr('src');
$('section.awSlider .carousel').on('slid.bs.carousel', function () {
var bscn = $(this).find('.item.active > img').attr('src');
$('section.awSlider > img').attr('src', bscn);
});
</script>
<canvas width="100%" height="100%"></canvas>
<script>
var c = document.getElementsByTagName('canvas')[0],
x = c.getContext('2d'),
w = window.innerWidth,
h = window.innerHeight,
pr = window.devicePixelRatio || 1,
f = 90,
q,
m = Math,
r = 0,
u = m.PI*2,
v = m.cos,
z = m.random
c.width = w*pr
c.height = h*pr
x.scale(pr, pr)
x.globalAlpha = 0.6
<!-- 折线Polyline背景 -->
</script>
<div id="homelogo" class="homelogo" style="background: rgba(255,255,255,1);">
<div class="homelogoback" style="border: 1px solid #404040;" >
<h1><a href="#content" id="logo">Bowlmeat's Blogs</a></h1>
<h3>Actions speak louder than words</h3>
<h5>bowlmeat</h5>
<!-- <p><a href="https://github.com/iTimeTraveler" target="_blank">Github</a></p> -->
</div>
</div>
</div>
<!-- 自适应主页背景大图 -->
<!-- home_logo_image居中 -->
<script>
var homelogodiv = document.getElementById("homelogo");
if (document.all.homelogo.offsetWidth > document.body.clientWidth) {
homelogodiv.style.width = document.body.clientWidth + "px";
homelogodiv.style.marginLeft = document.body.clientWidth * -0.5 + "px";
} else {
homelogodiv.style.width = homelogodiv.clientWidth + "px";
homelogodiv.style.marginLeft = (homelogodiv.clientWidth) * -0.5 + "px";
}
</script>
<div class="intro-navigate">
<p class="navigater-list">
<a id="beautifont" class="main-nav-link" href="index.html">首页</a>
<a id="beautifont" class="main-nav-link" href="archives">归档</a>
<a id="beautifont" class="main-nav-link" href="categories">分类</a>
<a id="beautifont" class="main-nav-link" href="tags">标签</a>
<a id="beautifont" class="main-nav-link" href="about">关于</a>
</p>
</div>
</header>
<div id="container">
<div id="wrap">
<div id="content" class="outer">
<section id="main" style="float:none;">
<article id="post-Reinforcement-Learning" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="article-inner">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="2022/08/16/Reinforcement-Learning/">Reinforcement Learning</a>
</h1>
</header>
<div class="article-meta">
<a href="2022/08/16/Reinforcement-Learning/" class="article-date">
<time datetime="2022-08-16T03:04:52.000Z" itemprop="datePublished">2022-08-16</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p class="article-excerpt-content">
博弈论基础
Summary
博弈搜索算法序列决策问题盲目搜索
dfs与bfs
启发式搜索
A* 与IDA*
对抗搜索
$\alpha$ - $\beta$ 剪枝,蒙特卡洛树搜索
总结
</p>
<p class="article-more-link">
<a href="2022/08/16/Reinforcement-Learning/#more">阅读全文</a>
</p>
</div>
<footer class="article-footer">
</footer>
</div>
</article>
<!-- Table of Contents -->
<article id="post-八股" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="article-inner">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="2022/08/01/%E5%85%AB%E8%82%A1/">八股</a>
</h1>
</header>
<div class="article-meta">
<a href="2022/08/01/%E5%85%AB%E8%82%A1/" class="article-date">
<time datetime="2022-08-01T01:39:31.000Z" itemprop="datePublished">2022-08-01</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p class="article-excerpt-content">
专业课
计算机网络
CSMA/CD与CSMA/CA协议区别
【答】
【知乎】802.11协议精读3:CSMA/CD与CSMA/CA
【CSDN】CSMA/CD与CSMA/CA的区别
操作系统
项目
搜索算法
</p>
<p class="article-more-link">
<a href="2022/08/01/%E5%85%AB%E8%82%A1/#more">阅读全文</a>
</p>
</div>
<footer class="article-footer">
</footer>
</div>
</article>
<!-- Table of Contents -->
<article id="post-basic-algorithms" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="article-inner">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="2022/07/29/basic-algorithms/">Basic Algorithms</a>
</h1>
</header>
<div class="article-meta">
<a href="2022/07/29/basic-algorithms/" class="article-date">
<time datetime="2022-07-29T03:05:29.000Z" itemprop="datePublished">2022-07-29</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p class="article-excerpt-content">
排序
快速排序
分治,确定分界点-调整区间-递归左右,不稳定
很多边界问题
x=q[l]; -> quicksort(q, l, j); quicksort(q, j+1, r);
x=q[r]或者x=q[(l+r+1)/2]; -> quicksort(q, l, i-1); quicksort(q, i, r);
避免一直取到左边界或者右边界
调整区间的简单思想:额外开两个数组,左边放一个右边放一个
12345678910111213141516171819202...
</p>
<p class="article-more-link">
<a href="2022/07/29/basic-algorithms/#more">阅读全文</a>
</p>
</div>
<footer class="article-footer">
</footer>
</div>
</article>
<!-- Table of Contents -->
<article id="post-Graph" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="article-inner">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="2022/07/23/Graph/">Graph</a>
</h1>
</header>
<div class="article-meta">
<a href="2022/07/23/Graph/" class="article-date">
<time datetime="2022-07-23T10:02:11.000Z" itemprop="datePublished">2022-07-23</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p class="article-excerpt-content">
DFS
842.排列数字
1234567891011121314151617void dfs(int u){ if(u > n){ for(int i=1; i<=n; i++) printf("%d ", path[i]); printf("\n"); return; } for(int i=1; i<=n; i++)&...
</p>
<p class="article-more-link">
<a href="2022/07/23/Graph/#more">阅读全文</a>
</p>
</div>
<footer class="article-footer">
</footer>
</div>
</article>
<!-- Table of Contents -->
<article id="post-posts" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="article-inner">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="2022/07/21/posts/">Posts</a>
</h1>
</header>
<div class="article-meta">
<a href="2022/07/21/posts/" class="article-date">
<time datetime="2022-07-21T12:50:32.000Z" itemprop="datePublished">2022-07-21</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p class="article-excerpt-content">
经验贴1.末9预推免
2.比较详细描述了考核内容
3.(武大,中山,哈深)比较详细
南大相关:https://blog.csdn.net/qq_41101762/article/details/108790594
https://blog.csdn.net/qq_41101762/article/details/108790594
https://zhuanlan.zhihu.com/p/415726099
https://grawww.nju.edu.cn/33/91/c910a5374...
</p>
<p class="article-more-link">
<a href="2022/07/21/posts/#more">阅读全文</a>
</p>
</div>
<footer class="article-footer">
</footer>
</div>
</article>
<!-- Table of Contents -->
<article id="post-Algorithms" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="article-inner">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="2022/07/21/Algorithms/">入门算法</a>
</h1>
</header>
<div class="article-meta">
<a href="2022/07/21/Algorithms/" class="article-date">
<time datetime="2022-07-21T09:44:58.000Z" itemprop="datePublished">2022-07-21</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p class="article-excerpt-content">
汉诺塔问题
汉诺塔问题中,3个圆盘至少需要移动7次,移动n个圆盘至少需要操作次
分治实现
12345678910111213141516171819void hanoi(int num, int sou, int tar, int aux){ static int i=1; if(num == 1){ printf("第%d次:从%c移动至%c\n", i, sou, tar); i++; }...
</p>
<p class="article-more-link">
<a href="2022/07/21/Algorithms/#more">阅读全文</a>
</p>
</div>
<footer class="article-footer">
</footer>
</div>
</article>
<!-- Table of Contents -->
<article id="post-Data-Structure-by-CSKaoYan" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="article-inner">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="2022/07/19/Data-Structure-by-CSKaoYan/">Data Structure by CSKaoYan</a>
</h1>
</header>
<div class="article-meta">
<a href="2022/07/19/Data-Structure-by-CSKaoYan/" class="article-date">
<time datetime="2022-07-19T13:21:13.000Z" itemprop="datePublished">2022-07-19</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p class="article-excerpt-content">
树二叉树题目
一、通过前序遍历与中序遍历确定一棵二叉树
这代码还有问题,目前输出的还是前序遍历,明天再看一下,先去洗个澡。
1234567891011121314151617181920212223242526272829303132// 输出层次遍历结果 #include<stdio.h>void traverseTree(char pre[], char in[], int preLeft, int preRight, int inLeft, int inRight)&#...
</p>
<p class="article-more-link">
<a href="2022/07/19/Data-Structure-by-CSKaoYan/#more">阅读全文</a>
</p>
</div>
<footer class="article-footer">
</footer>
</div>
</article>
<!-- Table of Contents -->
<article id="post-Data-Structure-And-Algorithms" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="article-inner">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="2022/07/19/Data-Structure-And-Algorithms/">Data Structure And Algorithms</a>
</h1>
</header>
<div class="article-meta">
<a href="2022/07/19/Data-Structure-And-Algorithms/" class="article-date">
<time datetime="2022-07-19T05:03:46.000Z" itemprop="datePublished">2022-07-19</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p class="article-excerpt-content">
单链表与双链表
静态链表实现
单链表
核心实现
123456789101112131415161718192021222324const int N = 100010;int ne[N], e[N], head, idx;// 初始化void init(){ head=-1; // -1表示空节点}// 头插法void addHead(int x){ e[idx]=x; ne[idx]=head; head=idx; // 注意...
</p>
<p class="article-more-link">
<a href="2022/07/19/Data-Structure-And-Algorithms/#more">阅读全文</a>
</p>
</div>
<footer class="article-footer">
</footer>
</div>
</article>
<!-- Table of Contents -->
<article id="post-Some-Hot-Topics" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="article-inner">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="2022/05/13/Some-Hot-Topics/">Some Hot Topics</a>
</h1>
</header>
<div class="article-meta">
<a href="2022/05/13/Some-Hot-Topics/" class="article-date">
<time datetime="2022-05-13T03:18:21.000Z" itemprop="datePublished">2022-05-13</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p class="article-excerpt-content">
Metaverse
information and communications technology
Extened Reality
</p>
<p class="article-more-link">
<a href="2022/05/13/Some-Hot-Topics/#more">阅读全文</a>
</p>
</div>
<footer class="article-footer">
</footer>
</div>
</article>
<!-- Table of Contents -->
<article id="post-设计一台简单计算机" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="article-inner">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="2022/03/25/%E8%AE%BE%E8%AE%A1%E4%B8%80%E5%8F%B0%E7%AE%80%E5%8D%95%E8%AE%A1%E7%AE%97%E6%9C%BA/">Computer Architecture</a>
</h1>
</header>
<div class="article-meta">
<a href="2022/03/25/%E8%AE%BE%E8%AE%A1%E4%B8%80%E5%8F%B0%E7%AE%80%E5%8D%95%E8%AE%A1%E7%AE%97%E6%9C%BA/" class="article-date">
<time datetime="2022-03-25T04:07:52.000Z" itemprop="datePublished">2022-03-25</time>
</a>
</div>
<div class="article-entry" itemprop="articleBody">
<p class="article-excerpt-content">
设计一台简单的计算机逻辑运算与
以低电平、高电平,电阻、扳开关为例
三极管
高低电平,真值表
与(AND) 或(OR) 异或(exclusive or)
算术运算加法
AND高位与XOR低位实现加法运算真值表
多位运算
A_i, B_i, C_(i-1)—S_i, C_i
多个单元块组成运算器
存储功能只读存储器
三极管
接地成为低电平
可读可写存储器
电容
运算器与控制器-CPU, 存储器-M
CPU, M, 主机
层次结构主存M, MAR, MDR
MAR...
</p>
<p class="article-more-link">
<a href="2022/03/25/%E8%AE%BE%E8%AE%A1%E4%B8%80%E5%8F%B0%E7%AE%80%E5%8D%95%E8%AE%A1%E7%AE%97%E6%9C%BA/#more">阅读全文</a>
</p>
</div>
<footer class="article-footer">
</footer>
</div>
</article>
<!-- Table of Contents -->
<nav id="page-nav">
<span class="page-number current">1</span><a class="page-number" href="page/2/">2</a><a class="extend next" rel="next" href="page/2/">下一页 &raquo;</a>
</nav>
</section>
</div>
<div align="center" style="margin-top: 30px;"><hr class="hr" style="margin:0px; height:3px;"></div>
<footer id="footer">
<div class="container">
<div class="row">
<p> Powered by <a href="http://hexo.io/" target="_blank">Hexo</a> and <a href="https://github.com/iTimeTraveler/hexo-theme-hiker" target="_blank">Hexo-theme-hiker</a> </p>
<p id="copyRightEn">Copyright © 2013 - 2022 Bowlmeat's Blogs All Rights Reserved.</p>
<p class="busuanzi_uv">
访客数 : <span id="busuanzi_value_site_uv"></span> |
访问量 : <span id="busuanzi_value_site_pv"></span>
</p>
</div>
</div>
</footer>
<!-- min height -->
<script>
var wrapdiv = document.getElementById("wrap");
var contentdiv = document.getElementById("content");
var allheader = document.getElementById("allheader");
wrapdiv.style.minHeight = document.body.offsetHeight + "px";
if (allheader != null) {
contentdiv.style.minHeight = document.body.offsetHeight - allheader.offsetHeight - document.getElementById("footer").offsetHeight + "px";
} else {
contentdiv.style.minHeight = document.body.offsetHeight - document.getElementById("footer").offsetHeight + "px";
}
</script>
</div>
<!-- <nav id="mobile-nav">
<a href="index.html" class="mobile-nav-link">Home</a>
<a href="archives" class="mobile-nav-link">Archives</a>
<a href="categories" class="mobile-nav-link">Categories</a>
<a href="tags" class="mobile-nav-link">Tags</a>
<a href="about" class="mobile-nav-link">About</a>
</nav> -->
<!-- mathjax config similar to math.stackexchange -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true
}
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
}
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for(i=0; i < all.length; i += 1) {
all[i].SourceElement().parentNode.className += ' has-jax';
}
});
</script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<link rel="stylesheet" href="fancybox/jquery.fancybox.css">
<script src="fancybox/jquery.fancybox.pack.js"></script>
<script src="js/scripts.js"></script>
<script src="js/home.js"></script>
<div style="display: none;">
<script src="https://s95.cnzz.com/z_stat.php?id=1260716016&web_id=1260716016" language="JavaScript"></script>
</div>
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js">
</script>
</div>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h2 class="modal-title" id="myModalLabel">设置</h2>
</div>
<hr style="margin-top:0px; margin-bottom:0px; width:80%; border-top: 3px solid #000;">
<hr style="margin-top:2px; margin-bottom:0px; width:80%; border-top: 1px solid #000;">