Skip to content

Commit 8a76fce

Browse files
committed
调整
1 parent 6c34b07 commit 8a76fce

32 files changed

+1567
-1564
lines changed

.idea/dictionaries/dingzhenhao.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_config.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ header-img: img/post-bg-desk.jpg
55
email: 295999757@qq.com
66
description: "It's worth doing just one thing for a lifetime."
77
keyword: "Chengwei, My Tec Blog, 295999757, java"
8-
url: "http://chengweii.github.io" # your host, for absolute URL
8+
url: "http://dingzhenhao.github.io" # your host, for absolute URL
99
baseurl: "" # for example, '/blog' if your blog hosted on 'host/blog'
10-
github_repo: "https://github.com/chengweii/chengweii.github.io.git" # you code repository
10+
github_repo: "https://github.com/dingzhenhao/dingzhenhao.github.io.git" # you code repository
1111

1212
# Sidebar settings
1313
sidebar: true # whether or not using Sidebar.
@@ -18,12 +18,12 @@ sidebar-avatar: /img/about-BY-gentle.jpg # use absolute URL, seeing it's us
1818

1919
# SNS settings
2020
RSS: false
21-
# weibo_username: chengweii
22-
zhihu_username: chengweii
23-
github_username: chengweii
24-
facebook_username: chengweii
21+
# weibo_username: dingzhenhao
22+
zhihu_username: dingzhenhao
23+
github_username: dingzhenhao
24+
facebook_username: dingzhenhao
2525
jianshu_username: f583e985433c
26-
#twitter_username: chengweii
26+
#twitter_username: dingzhenhao
2727

2828

2929

@@ -40,7 +40,8 @@ anchorjs: true # if you want to customize anchor. check
4040

4141
# Gems
4242
# from PR#40, to support local preview for Jekyll 3.0
43-
gems: [jekyll-paginate]
43+
#gems: [jekyll-test-plugin, jekyll-jsonify, jekyll-assets,jekyll-paginate]
44+
plugins: [jekyll-paginate]
4445

4546

4647

@@ -56,7 +57,7 @@ kramdown:
5657

5758
# 评论系统
5859
# Disqus settings(https://disqus.com/)
59-
disqus_username: chengweii
60+
disqus_username: dingzhenhao
6061

6162
# Analytics settings
6263
# Baidu Analytics
@@ -90,4 +91,3 @@ friends: [
9091
}
9192
]
9293

93-
theme: jekyll-theme-cayman

_posts/2017-09-04-集合框架概述.md renamed to _drafts/2017-09-04-集合框架概述.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: 集合框架概述
44
subtitle: Java集合框架的结构以及常用集合类的使用介绍。
55
date: 2017-09-04
6-
author: chengweii
6+
author: dingzhenhao
77
header-img: img/post-bg-hacker.jpg
88
catalog: true
99
tags:

_posts/2017-09-12-String、StringBuffer、StringBuilder.md renamed to _drafts/2017-09-12-String、StringBuffer、StringBuilder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: String、StringBuffer、StringBuilder
44
subtitle: 详细介绍String、StringBuffer、StringBuilder,java字符串技术及相关原理。
55
date: 2017-09-12
6-
author: chengweii
6+
author: dingzhenhao
77
header-img: img/post-bg-hacker.jpg
88
catalog: true
99
tags:

_posts/2017-09-12-设计模式概要整理.md renamed to _drafts/2017-09-12-设计模式概要整理.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: 设计模式简单介绍与应用
44
subtitle: 设计模式的具体场景应用案例。
55
date: 2017-09-12
6-
author: chengweii
6+
author: dingzhenhao
77
header-img: img/post-bg-hacker.jpg
88
catalog: true
99
tags:
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,48 @@
1-
---
2-
layout: post
3-
title: 常用数据结构与算法
4-
subtitle: 详细介绍常用数据结构BTree(B+Tree、B-Tree)及二分查找、分块查找、哈希查找、快速排序、归并排序、插入排序算法、海量数据处理算法
5-
date: 2017-10-01
6-
author: chengweii
7-
header-img: img/post-bg-hacker.jpg
8-
catalog: true
9-
tags:
10-
   - 数据结构
11-
   - 算法
12-
---
13-
14-
# 常用数据结构与算法
15-
详细介绍常用数据结构BTree(B+Tree、B-Tree)及二分查找、分块查找、哈希查找、快速排序、归并排序、插入排序算法、海量数据处理算法。
16-
17-
## BTree(B+Tree、B-Tree)
18-
19-
## 查找
20-
21-
### 二分查找
22-
23-
### 分块查找
24-
25-
### 哈希查找
26-
27-
## 排序
28-
29-
### 快速排序
30-
31-
### 归并排序
32-
33-
### 插入排序
34-
35-
## 哈希表
36-
37-
## 海量数据处理
38-
39-
### 只用2GB内存在20亿个整数(32位)中找到出现次数最多的数
40-
41-
### 海量日志数据,提取出某日访问某网站次数最多的那个IP
42-
43-
# 参考文献
44-
[海量数据问题之一](http://www.cnblogs.com/xiaomoxian/p/5161428.html)
45-
[七大查找算法](https://www.tuicool.com/articles/f2y63i7)
46-
[一致性Hash算法](http://www.cnblogs.com/xrq730/p/5186728.html)
47-
[hash算法原理详解](http://blog.csdn.net/tanggao1314/article/details/51457585)
1+
---
2+
layout: post
3+
title: 常用数据结构与算法
4+
subtitle: 详细介绍常用数据结构BTree(B+Tree、B-Tree)及二分查找、分块查找、哈希查找、快速排序、归并排序、插入排序算法、海量数据处理算法
5+
date: 2017-10-01
6+
author: dingzhenhao
7+
header-img: img/post-bg-hacker.jpg
8+
catalog: true
9+
tags:
10+
   - 数据结构
11+
   - 算法
12+
---
13+
14+
# 常用数据结构与算法
15+
详细介绍常用数据结构BTree(B+Tree、B-Tree)及二分查找、分块查找、哈希查找、快速排序、归并排序、插入排序算法、海量数据处理算法。
16+
17+
## BTree(B+Tree、B-Tree)
18+
19+
## 查找
20+
21+
### 二分查找
22+
23+
### 分块查找
24+
25+
### 哈希查找
26+
27+
## 排序
28+
29+
### 快速排序
30+
31+
### 归并排序
32+
33+
### 插入排序
34+
35+
## 哈希表
36+
37+
## 海量数据处理
38+
39+
### 只用2GB内存在20亿个整数(32位)中找到出现次数最多的数
40+
41+
### 海量日志数据,提取出某日访问某网站次数最多的那个IP
42+
43+
# 参考文献
44+
[海量数据问题之一](http://www.cnblogs.com/xiaomoxian/p/5161428.html)
45+
[七大查找算法](https://www.tuicool.com/articles/f2y63i7)
46+
[一致性Hash算法](http://www.cnblogs.com/xrq730/p/5186728.html)
47+
[hash算法原理详解](http://blog.csdn.net/tanggao1314/article/details/51457585)
4848
[浅谈算法和数据结构:九 平衡查找树之红黑树](http://www.cnblogs.com/yangecnu/p/Introduce-Red-Black-Tree.html)
Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
---
2-
layout: post
3-
title: 深入了解HashMap
4-
subtitle: 深入了解哈希表的内部实现细节及其应用场景
5-
date: 2017-10-05
6-
author: chengweii
7-
header-img: img/post-bg-hacker.jpg
8-
catalog: true
9-
tags:
10-
   - HashMap
11-
   - java
12-
---
13-
14-
# HashMap
15-
HashMap集合了数组、链表、红黑树三种数据结构,支持克隆、序列化等操作,值得重点研究和分享。
16-
17-
## hashCode
18-
19-
## 原理
20-
21-
## 性能
22-
23-
## 线程安全
24-
25-
# 参考文献
1+
---
2+
layout: post
3+
title: 深入了解HashMap
4+
subtitle: 深入了解哈希表的内部实现细节及其应用场景
5+
date: 2017-10-05
6+
author: dingzhenhao
7+
header-img: img/post-bg-hacker.jpg
8+
catalog: true
9+
tags:
10+
   - HashMap
11+
   - java
12+
---
13+
14+
# HashMap
15+
HashMap集合了数组、链表、红黑树三种数据结构,支持克隆、序列化等操作,值得重点研究和分享。
16+
17+
## hashCode
18+
19+
## 原理
20+
21+
## 性能
22+
23+
## 线程安全
24+
25+
# 参考文献
2626
[HashMap源码分析(jdk1.8)](http://blog.csdn.net/u010887744/article/details/50346257)

_posts/2017-10-18-电商业务经验.md renamed to _drafts/2017-10-18-电商业务经验.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: 电商业务经验
44
subtitle: 详细介绍电商业务经验
55
date: 2017-10-18
6-
author: chengweii
6+
author: dingzhenhao
77
header-img: img/post-bg-hacker.jpg
88
catalog: true
99
tags:

0 commit comments

Comments
 (0)