-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
326 lines (200 loc) · 9.94 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
<!DOCTYPE HTML>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Renfei's blog</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=3, minimum-scale=1">
<meta name="author" content="Renfei.Monster">
<link rel="alternate" href="http://weibo.com/578522226" title="Renfei's blog" type="application/atom+xml">
<link rel="icon" href="/img/favicon.ico">
<link rel="apple-touch-icon" href="/img/pacman.jpg">
<link rel="apple-touch-icon-precomposed" href="/img/pacman.jpg">
<link rel="stylesheet" href="/css/style.css" type="text/css">
</head>
<body>
<header>
<div>
<div id="imglogo">
<a href="/"><img src="/img/logo.svg" alt="Renfei's blog" title="Renfei's blog"/></a>
</div>
<div id="textlogo">
<h1 class="site-name"><a href="/" title="Renfei's blog">Renfei's blog</a></h1>
<h2 class="blog-motto">Veni,Vedi,Vici</h2>
</div>
<div class="navbar"><a class="navbutton navmobile" href="#" title="菜单">
</a></div>
<nav class="animated">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/archives">Archives</a></li>
<li><a href="/atom.xml">Rss</a></li>
<li><a href="/sitemap.xml">Sitemap</a></li>
<li><a href="">简历</a></li>
<li>
<form class="search" action="//google.com/search" method="get" accept-charset="utf-8">
<label>Search</label>
<input type="text" id="search" name="q" autocomplete="off" maxlength="20" placeholder="搜索" />
<input type="hidden" name="q" value="site:mcdullfei.github.io">
</form>
</li>
</ul>
</nav>
</div>
</header>
<div id="container">
<div id="main">
<section class="post" itemscope itemprop="blogPost">
<a href="/2016/05/26/预排序遍历树算法/" title="预排序遍历树算法" itemprop="url">
<h1 itemprop="name">预排序遍历树算法</h1>
<p itemprop="description" >预排序遍历树算法
如题所示,这是一种为查询而生的遍历树算法,如果业务需求要求查询的场景高于、多于增删改,可以考虑此算法,该算法会牺牲掉一些插入、删除的性能。
算法简单概括:类二叉树先序遍历,将树上的每个节点标示left、right、level、parent属性(parent可以更</p>
<time datetime="2016-05-26T06:34:47.000Z" itemprop="datePublished">2016-05-26</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2016/05/13/转-性能优化模式/" title="转-性能优化模式" itemprop="url">
<h1 itemprop="name">转-性能优化模式</h1>
<p itemprop="description" >性能优化模式转自:http://tech.meituan.com/performance_tuning_pattern.html</p>
<time datetime="2016-05-13T08:43:19.000Z" itemprop="datePublished">2016-05-13</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2016/02/12/hash算法/" title="hash算法" itemprop="url">
<h1 itemprop="name">hash算法</h1>
<p itemprop="description" >比较详尽的hash算法介绍:
转自:http://www.cnblogs.com/wangjy/archive/2011/09/08/2171638.html</p>
<time datetime="2016-02-12T09:16:20.000Z" itemprop="datePublished">2016-02-12</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2016/02/01/转-还算靠谱的两片关于gc的文章/" title="[转]还算靠谱的两片关于gc的文章" itemprop="url">
<h1 itemprop="name">[转]还算靠谱的两片关于gc的文章</h1>
<p itemprop="description" >Java GC的工作原理+Minor GC、FullGC转自:http://www.blogjava.net/ldwblog/archive/2013/07/24/401919.html
触发JVM进行Full GC的情况转自:http://blog.csdn.net/chenl</p>
<time datetime="2016-02-01T03:24:49.000Z" itemprop="datePublished">2016-02-01</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2016/01/29/开启GC日志/" title="开启GC日志" itemprop="url">
<h1 itemprop="name">开启GC日志</h1>
<p itemprop="description" >JVM的GC日志的主要参数:-XX:+PrintGC 输出GC日志-XX:+PrintGCDetails 输出GC的详细日志-XX:+PrintGCTimeStamps 输出GC的时间戳(以基准时间的形式)-XX:+PrintGCDateStamps 输出GC的时间戳(以日期的形</p>
<time datetime="2016-01-29T09:03:08.000Z" itemprop="datePublished">2016-01-29</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2016/01/29/GC配置/" title="GC配置" itemprop="url">
<h1 itemprop="name">GC配置</h1>
<p itemprop="description" >GC配置转自:http://www.cnblogs.com/ggjucheng/p/3977384.html</p>
<time datetime="2016-01-29T07:11:08.000Z" itemprop="datePublished">2016-01-29</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2016/01/27/[转]Redis事务介绍/" title="[转]Redis事务介绍" itemprop="url">
<h1 itemprop="name">[转]Redis事务介绍</h1>
<p itemprop="description" >redis事务转自:http://qifuguang.me/2015/09/30/Redis事务介绍/</p>
<time datetime="2016-01-27T10:30:10.000Z" itemprop="datePublished">2016-01-27</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2016/01/12/转载-系统负载能力浅析/" title="[转载]系统负载能力浅析" itemprop="url">
<h1 itemprop="name">[转载]系统负载能力浅析</h1>
<p itemprop="description" >系统负载能力浅析转自: http://www.rowkey.me/blog/2015/09/09/load-analysis/</p>
<time datetime="2016-01-12T10:22:29.000Z" itemprop="datePublished">2016-01-12</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2016/01/03/hello-world/" title="Hello World" itemprop="url">
<h1 itemprop="name">Hello World</h1>
<p itemprop="description" >Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the </p>
<time datetime="2016-01-03T07:41:38.000Z" itemprop="datePublished">2016-01-03</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2015/12/31/作别2015/" title="作别2015" itemprop="url">
<h1 itemprop="name">作别2015</h1>
<p itemprop="description" >作别2015时光匆匆留下的回忆不多
喜欢上了民谣但没把自己丢在回忆里那布鲁斯口琴遗忘在了床头似某些人事已蒙上灰尘
结交了新朋友许下美好约定突然想起汪国真愿那颗星永远明亮,如他那激励人的诗一般在路上我也有朋友和远方
读了一些文字其量虽不足以支撑猥琐的躯壳但它们不像代码般冰冷我还需要</p>
<time datetime="2015-12-31T01:45:39.000Z" itemprop="datePublished">2015-12-31</time>
</a>
</section>
<nav id="page-nav" class="clearfix">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="page-number" href="/page/3/">3</a><a class="extend next" rel="next" href="/page/2/">Next »</a>
</nav>
</div>
<div class="openaside"><a class="navbutton" href="#" title="显示侧边栏"></a></div>
<div id="asidepart">
<div class="closeaside"><a class="closebutton" href="#" title="隐藏侧边栏"></a></div>
<aside class="clearfix">
<div class="rsspart">
<a href="http://weibo.com/578522226" target="_blank" title="rss">RSS 订阅</a>
</div>
</aside>
</div>
</div>
<footer><div id="footer" >
<div class="line">
<span></span>
<div class="author"></div>
</div>
<section class="info">
<p> Hello , Weibo follow me. <br/>
A man will pay $2 for a $1 item he wants. A woman will pay $1 for a $2 item that she doesn't want.</p>
</section>
<div class="social-font clearfix">
<a href="http://weibo.com/1809365984" target="_blank" title="weibo"></a>
<a href="https://github.com/McdullFei" target="_blank" title="github"></a>
</div>
<p class="copyright">Powered by <a href="http://hexo.io" target="_blank" title="hexo">hexo</a> and Theme by <a href="https://github.com/A-limon/pacman" target="_blank" title="Pacman">Pacman</a> © 2016
<a href="http://mcdullfei.github.io" target="_blank" title="Renfei.Monster">Renfei.Monster</a>
</p>
</div>
</footer>
<script src="/js/jquery-2.1.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.navbar').click(function(){
$('header nav').toggleClass('shownav');
});
var myWidth = 0;
function getSize(){
if( typeof( window.innerWidth ) == 'number' ) {
myWidth = window.innerWidth;
} else if( document.documentElement && document.documentElement.clientWidth) {
myWidth = document.documentElement.clientWidth;
};
};
var m = $('#main'),
a = $('#asidepart'),
c = $('.closeaside'),
o = $('.openaside');
$(window).resize(function(){
getSize();
if (myWidth >= 1024) {
$('header nav').removeClass('shownav');
}else
{
m.removeClass('moveMain');
a.css('display', 'block').removeClass('fadeOut');
o.css('display', 'none');
}
});
c.click(function(){
a.addClass('fadeOut').css('display', 'none');
o.css('display', 'block').addClass('fadeIn');
m.addClass('moveMain');
});
o.click(function(){
o.css('display', 'none').removeClass('beforeFadeIn');
a.css('display', 'block').removeClass('fadeOut').addClass('fadeIn');
m.removeClass('moveMain');
});
$(window).scroll(function(){
o.css("top",Math.max(80,260-$(this).scrollTop()));
});
});
</script>
</body>
</html>