-
Notifications
You must be signed in to change notification settings - Fork 1
/
collections.html
372 lines (98 loc) · 7.87 KB
/
collections.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
<!DOCTYPE html>
<html lang="zh-CN" class="h-100">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="hyzhai">
<meta name="description" content="hyzhai's blog">
<meta name="generator" content="jekyll 3.8.5">
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/posts.css">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/styles/default.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/highlight.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/highlightjs-line-numbers.min.js"></script>
<script>hljs.initHighlightingOnLoad();hljs.initLineNumbersOnLoad();</script>
<title>Collections - HYZHAI'S BLOG</title>
</head>
<body class="d-flex flex-column h-100">
<nav class="navbar navbar-expand-lg navbar-light bg-white border-bottom shadow-sm fixed-top flex-shrink-0"
style="opacity: 0.98">
<div class="container">
<a href="/" class="navbar-brand mr-auto"><b>HYZHAI'S BLOG</b></a>
<ul class="navbar-nav">
<li class="nav-item mr-3"><a href="/" class="nav-link">Home</a></li>
<li class="nav-item mr-3"><a href="/collections.html" class="nav-link">Collections</a></li>
<li class="nav-item"><a href="/about.html" class="nav-link">About</a></li>
</ul>
</div>
</nav>
<div class="container flex-shrink-0 mt-5">
<h2 class="mt-5 mb-3"><b>Collections</b></h2>
<div class="mb-5" data-toggle="button">
<a href="#Jekyll" class="btn btn-outline-primary rounded-pill mr-3 active" data-toggle="collapse"
role="button" aria-expanded="true" aria-controls="Jekyll" aria-pressed="true">Jekyll</a>
<a href="#ML" class="btn btn-outline-success rounded-pill mr-3" data-toggle="collapse"
role="button" aria-expanded="false" aria-controls="ML" aria-pressed="false">ML</a>
<a href="#C++" class="btn btn-outline-success rounded-pill mr-3" data-toggle="collapse"
role="button" aria-expanded="false" aria-controls="C++" aria-pressed="false">C++</a>
<a href="#Git" class="btn btn-outline-secondary rounded-pill mr-3" data-toggle="collapse"
role="button" aria-expanded="false" aria-controls="Git" aria-pressed="false">Git</a>
<a href="#Python" class="btn btn-outline-warning rounded-pill mr-3" data-toggle="collapse"
role="button" aria-expanded="false" aria-controls="Python" aria-pressed="false">Python</a>
<a href="#Math" class="btn btn-outline-dark rounded-pill mr-3" data-toggle="collapse"
role="button" aria-expanded="false" aria-controls="Math" aria-pressed="false">Math</a>
<a href="#Java" class="btn btn-outline-primary rounded-pill mr-3" data-toggle="collapse"
role="button" aria-expanded="false" aria-controls="Java" aria-pressed="false">Java</a>
<a href="#Algorithm" class="btn btn-outline-warning rounded-pill mr-3" data-toggle="collapse"
role="button" aria-expanded="false" aria-controls="Algorithm" aria-pressed="false">Algorithm</a>
</div>
<div class="collapse show mb-5" , id="Jekyll">
<div><a href="/2019/02/02/GitHubBlog.html" class="bg-light p-2">在GitHub建立自己的博客</a></div>
</div>
<div class="collapse mb-5" , id="ML">
<div><a href="/2019/05/05/XGBoostUnderstanding.html" class="bg-light p-2">XGBoost算法理解及实践</a></div>
</div>
<div class="collapse mb-5" , id="C++">
<div><a href="/2019/05/20/PointerAndArray.html" class="bg-light p-2">C++中的数组与指针</a></div>
<div><a href="/2019/04/25/VSCodeConfigforC++.html" class="bg-light p-2">VSCode C++开发环境配置</a></div>
</div>
<div class="collapse mb-5" , id="Git">
<div><a href="/2019/02/02/GitHubBlog.html" class="bg-light p-2">在GitHub建立自己的博客</a></div>
</div>
<div class="collapse mb-5" , id="Python">
</div>
<div class="collapse mb-5" , id="Math">
<div><a href="/2019/06/16/NormInspection.html" class="bg-light p-2">正态检验与Q-Q Plot</a></div>
<div><a href="/2019/06/01/BallAndBox.html" class="bg-light p-2">组合数学中的球与盒子问题</a></div>
<div><a href="/2019/05/18/Combination.html" class="bg-light p-2">常见组合问题求解</a></div>
</div>
<div class="collapse mb-5" , id="Java">
<div><a href="/2019/02/16/VSCodeConfigforJava.html" class="bg-light p-2">VSCode Java开发环境配置</a></div>
</div>
<div class="collapse mb-5" , id="Algorithm">
<div><a href="/2019/05/23/BranchAndBoundMethod.html" class="bg-light p-2">分支限界法求解最小重量机器设计问题</a></div>
<div><a href="/2019/05/14/nqueens.html" class="bg-light p-2">回溯法求解n后问题</a></div>
<div><a href="/2019/03/24/LinearSearchBiggestGap.html" class="bg-light p-2">查找最大间隙的线性时间算法</a></div>
</div>
</div>
</div>
<footer class="bg-light py-3 text-muted mt-auto">
<div class="container">
Powered by <a href="https://getbootstrap.com/" target="_blank">Bootstrap</a> & <a href="https://jekyllrb.com/"
target="_blank">jekyll</a>
<span class="float-right">All rights reserved <a href="https://github.com/hellozhaihy"
target="_blank">@hyzhai</a></span>
</div>
</footer>
<script src="/jquery/jquery-3.3.1.slim.min.js"></script>
<script>
$(function () {
$('[data-toggle="tooltip"]').tooltip();
})
</script>
<script src="/ajax/popper.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_SVG' async></script>
</body>
</html>