-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (87 loc) · 3.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
<!DOCTYPE html>
<html>
<head>
<meta name="generator" content="Hugo 0.81.0" />
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge"><title>Chung's Notebook</title><meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="alternate" type="application/rss+xml" href="https://nnkken.github.io/index.xml" title="Chung's Notebook" />
<meta property="og:title" content="Chung's Notebook" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://nnkken.github.io/" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Chung's Notebook"/>
<meta name="twitter:description" content=""/>
<link href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,300italic,400italic|Raleway:500,100,300" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="/css/normalize.css" />
<link rel="stylesheet" type="text/css" media="screen" href="/css/main.css" /><script src="/js/main.js"></script>
</head>
<body>
<div class="container wrapper">
<div class="header">
<h1 class="site-title">Chung's Notebook</h1>
<div class="site-description"><nav class="nav social">
<ul class="flat"></ul>
</nav>
</div>
<nav class="nav">
<ul class="flat">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/post">All posts</a>
</li>
<li>
<a href="/about">About</a>
</li>
<li>
<a href="https://github.com/nnkken">Github</a>
</li>
</ul>
</nav>
</div>
<div class="recent-posts section">
<h2 class="section-header">
Recent posts
</h2>
<div class="posts">
<div class="post">
<div class="meta">Mar 10, 2021</div>
<a class="title" href="/post/frustration-on-programming/">Frustration on programming</a> —
<span class="description">
Suppose there are two people, A and B.
A known nothing about algorithm.
B mastered the book Introduction to Algorithm...
</span>
</div>
<div class="post">
<div class="meta">Apr 19, 2019</div>
<a class="title" href="/post/recursive-relation/">使用矩陣計算遞歸關係式</a> —
<span class="description">
最近與朋友討論一條題目:一個 $3 \times n$ 的網格,以 $1 \times 2$ 的磚塊(可旋轉)填滿,有多少種填法?
朋友的解法是動態規劃,我對動態規劃不太熟悉,倒是比較常用遞歸關係,兩者算是殊途同歸。
# 遞歸關係式
...
</span>
</div>
<div class="post">
<div class="meta">Apr 17, 2019</div>
<a class="title" href="/post/quicksort/">快速排序中分割元素的的另一種寫法</a> —
<span class="description">
快速排序(Quicksort)由以下幾個部分組成:
1. 選定 `pivot`
2. 移動數組中的元素,使元素以 `pivot` 為界分割成兩部分,前面部分全部小於 `pivot`,後面部分全部大於 `pivot`
3. 遞歸排序前面部...
</span>
</div>
</div>
</div>
</div>
<div class="footer wrapper">
<nav class="nav">
<div><a href="https://github.com/vividvilla/ezhil">Ezhil theme</a> | Built with <a href="https://gohugo.io">Hugo</a></div>
</nav>
</div>
</body>
</html>