Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8575c5c

Browse files
committed
Site updated: 2018-07-10 13:34:22
1 parent bc1e806 commit 8575c5c

File tree

57 files changed

+313
-309
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+313
-309
lines changed

2010/2010-05-22-backtracking-algorithm/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -538,8 +538,8 @@ <h3 id="4、算法框架"><a href="#4、算法框架" class="headerlink" title="
538538

539539
<div class="post-nav-prev post-nav-item">
540540

541-
<a href="/2010/2010-05-22-divide-and-conquer-algorithm/" rel="prev" title="五大常用算法之一:分治算法">
542-
五大常用算法之一:分治算法 <i class="fa fa-chevron-right"></i>
541+
<a href="/2010/2010-05-22-dynamic-programming-algorithm/" rel="prev" title="五大常用算法之二:动态规划算法">
542+
五大常用算法之二:动态规划算法 <i class="fa fa-chevron-right"></i>
543543
</a>
544544

545545
</div>

2010/2010-05-22-branch-and-bound-algorithm/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -533,8 +533,8 @@ <h3 id="三、回溯法和分支限界法的一些区别"><a href="#三、回溯
533533
<div class="post-nav">
534534
<div class="post-nav-next post-nav-item">
535535

536-
<a href="/2010/2010-05-22-greedy-algorithm/" rel="next" title="五大常用算法之三:贪心算法">
537-
<i class="fa fa-chevron-left"></i> 五大常用算法之三:贪心算法
536+
<a href="/2010/2010-05-22-dynamic-programming-algorithm/" rel="next" title="五大常用算法之二:动态规划算法">
537+
<i class="fa fa-chevron-left"></i> 五大常用算法之二:动态规划算法
538538
</a>
539539

540540
</div>
@@ -543,8 +543,8 @@ <h3 id="三、回溯法和分支限界法的一些区别"><a href="#三、回溯
543543

544544
<div class="post-nav-prev post-nav-item">
545545

546-
<a href="/2011/2011-05-22-skiplist/" rel="prev" title="跳表SkipList">
547-
跳表SkipList <i class="fa fa-chevron-right"></i>
546+
<a href="/2010/2010-05-22-greedy-algorithm/" rel="prev" title="五大常用算法之三:贪心算法">
547+
五大常用算法之三:贪心算法 <i class="fa fa-chevron-right"></i>
548548
</a>
549549

550550
</div>

2010/2010-05-22-divide-and-conquer-algorithm/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -564,8 +564,8 @@ <h3 id="六、可使用分治法求解的一些经典问题"><a href="#六、可
564564
<div class="post-nav">
565565
<div class="post-nav-next post-nav-item">
566566

567-
<a href="/2010/2010-05-22-backtracking-algorithm/" rel="next" title="五大常用算法之四:回溯法">
568-
<i class="fa fa-chevron-left"></i> 五大常用算法之四:回溯法
567+
<a href="/2010/2010-05-22-greedy-algorithm/" rel="next" title="五大常用算法之三:贪心算法">
568+
<i class="fa fa-chevron-left"></i> 五大常用算法之三:贪心算法
569569
</a>
570570

571571
</div>
@@ -574,8 +574,8 @@ <h3 id="六、可使用分治法求解的一些经典问题"><a href="#六、可
574574

575575
<div class="post-nav-prev post-nav-item">
576576

577-
<a href="/2010/2010-05-22-dynamic-programming-algorithm/" rel="prev" title="五大常用算法之二:动态规划算法">
578-
五大常用算法之二:动态规划算法 <i class="fa fa-chevron-right"></i>
577+
<a href="/2011/2011-05-22-skiplist/" rel="prev" title="跳表SkipList">
578+
跳表SkipList <i class="fa fa-chevron-right"></i>
579579
</a>
580580

581581
</div>

2010/2010-05-22-dynamic-programming-algorithm/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -546,8 +546,8 @@ <h3 id="六、动态规划算法基本框架"><a href="#六、动态规划算法
546546
<div class="post-nav">
547547
<div class="post-nav-next post-nav-item">
548548

549-
<a href="/2010/2010-05-22-divide-and-conquer-algorithm/" rel="next" title="五大常用算法之一:分治算法">
550-
<i class="fa fa-chevron-left"></i> 五大常用算法之一:分治算法
549+
<a href="/2010/2010-05-22-backtracking-algorithm/" rel="next" title="五大常用算法之四:回溯法">
550+
<i class="fa fa-chevron-left"></i> 五大常用算法之四:回溯法
551551
</a>
552552

553553
</div>
@@ -556,8 +556,8 @@ <h3 id="六、动态规划算法基本框架"><a href="#六、动态规划算法
556556

557557
<div class="post-nav-prev post-nav-item">
558558

559-
<a href="/2010/2010-05-22-greedy-algorithm/" rel="prev" title="五大常用算法之三:贪心算法">
560-
五大常用算法之三:贪心算法 <i class="fa fa-chevron-right"></i>
559+
<a href="/2010/2010-05-22-branch-and-bound-algorithm/" rel="prev" title="五大常用算法之五:分支限界法">
560+
五大常用算法之五:分支限界法 <i class="fa fa-chevron-right"></i>
561561
</a>
562562

563563
</div>

2010/2010-05-22-greedy-algorithm/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -557,8 +557,8 @@ <h3 id="六、例题分析"><a href="#六、例题分析" class="headerlink" tit
557557
<div class="post-nav">
558558
<div class="post-nav-next post-nav-item">
559559

560-
<a href="/2010/2010-05-22-dynamic-programming-algorithm/" rel="next" title="五大常用算法之二:动态规划算法">
561-
<i class="fa fa-chevron-left"></i> 五大常用算法之二:动态规划算法
560+
<a href="/2010/2010-05-22-branch-and-bound-algorithm/" rel="next" title="五大常用算法之五:分支限界法">
561+
<i class="fa fa-chevron-left"></i> 五大常用算法之五:分支限界法
562562
</a>
563563

564564
</div>
@@ -567,8 +567,8 @@ <h3 id="六、例题分析"><a href="#六、例题分析" class="headerlink" tit
567567

568568
<div class="post-nav-prev post-nav-item">
569569

570-
<a href="/2010/2010-05-22-branch-and-bound-algorithm/" rel="prev" title="五大常用算法之五:分支限界法">
571-
五大常用算法之五:分支限界法 <i class="fa fa-chevron-right"></i>
570+
<a href="/2010/2010-05-22-divide-and-conquer-algorithm/" rel="prev" title="五大常用算法之一:分治算法">
571+
五大常用算法之一:分治算法 <i class="fa fa-chevron-right"></i>
572572
</a>
573573

574574
</div>

2011/2011-05-22-skiplist/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -602,8 +602,8 @@ <h3 id="论文,代码下载及参考资料"><a href="#论文,代码下载及
602602
<div class="post-nav">
603603
<div class="post-nav-next post-nav-item">
604604

605-
<a href="/2010/2010-05-22-branch-and-bound-algorithm/" rel="next" title="五大常用算法之五:分支限界法">
606-
<i class="fa fa-chevron-left"></i> 五大常用算法之五:分支限界法
605+
<a href="/2010/2010-05-22-divide-and-conquer-algorithm/" rel="next" title="五大常用算法之一:分治算法">
606+
<i class="fa fa-chevron-left"></i> 五大常用算法之一:分治算法
607607
</a>
608608

609609
</div>

2015/2015-02-06-raft-zh_cn/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,8 +1096,8 @@ <h2 id="参考"><a href="#参考" class="headerlink" title="参考"></a>参考</
10961096

10971097
<div class="post-nav-prev post-nav-item">
10981098

1099-
<a href="/2015/2015-03-05-bigdata-governance/" rel="prev" title="大数据治理:为业务提供持续的、可度量的价值">
1100-
大数据治理:为业务提供持续的、可度量的价值 <i class="fa fa-chevron-right"></i>
1099+
<a href="/2015/2015-03-13-sort-algorithm-summary/" rel="prev" title="常用排序算法总结(性能+代码)">
1100+
常用排序算法总结(性能+代码) <i class="fa fa-chevron-right"></i>
11011101
</a>
11021102

11031103
</div>

2015/2015-03-05-bigdata-governance/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -531,8 +531,8 @@ <h3 id="大数据治理系列"><a href="#大数据治理系列" class="headerlin
531531
<div class="post-nav">
532532
<div class="post-nav-next post-nav-item">
533533

534-
<a href="/2015/2015-02-06-raft-zh_cn/" rel="next" title="寻找一种易于理解的一致性算法(扩展版">
535-
<i class="fa fa-chevron-left"></i> 寻找一种易于理解的一致性算法(扩展版
534+
<a href="/2015/2015-03-13-sort-algorithm-summary/" rel="next" title="常用排序算法总结(性能+代码">
535+
<i class="fa fa-chevron-left"></i> 常用排序算法总结(性能+代码
536536
</a>
537537

538538
</div>
@@ -541,8 +541,8 @@ <h3 id="大数据治理系列"><a href="#大数据治理系列" class="headerlin
541541

542542
<div class="post-nav-prev post-nav-item">
543543

544-
<a href="/2015/2015-03-13-sort-algorithm-summary/" rel="prev" title="常用排序算法总结(性能+代码)">
545-
常用排序算法总结(性能+代码) <i class="fa fa-chevron-right"></i>
544+
<a href="/2015/2015-03-27-config-center-disconf/" rel="prev" title="分布式配置管理平台 Disconf">
545+
分布式配置管理平台 Disconf <i class="fa fa-chevron-right"></i>
546546
</a>
547547

548548
</div>

2015/2015-03-13-sort-algorithm-summary/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -622,8 +622,8 @@ <h2 id="in-summary"><a href="#in-summary" class="headerlink" title="in summary">
622622
<div class="post-nav">
623623
<div class="post-nav-next post-nav-item">
624624

625-
<a href="/2015/2015-03-05-bigdata-governance/" rel="next" title="大数据治理:为业务提供持续的、可度量的价值">
626-
<i class="fa fa-chevron-left"></i> 大数据治理:为业务提供持续的、可度量的价值
625+
<a href="/2015/2015-02-06-raft-zh_cn/" rel="next" title="寻找一种易于理解的一致性算法(扩展版)">
626+
<i class="fa fa-chevron-left"></i> 寻找一种易于理解的一致性算法(扩展版)
627627
</a>
628628

629629
</div>
@@ -632,8 +632,8 @@ <h2 id="in-summary"><a href="#in-summary" class="headerlink" title="in summary">
632632

633633
<div class="post-nav-prev post-nav-item">
634634

635-
<a href="/2015/2015-03-27-config-center-disconf/" rel="prev" title="分布式配置管理平台 Disconf">
636-
分布式配置管理平台 Disconf <i class="fa fa-chevron-right"></i>
635+
<a href="/2015/2015-03-05-bigdata-governance/" rel="prev" title="大数据治理:为业务提供持续的、可度量的价值">
636+
大数据治理:为业务提供持续的、可度量的价值 <i class="fa fa-chevron-right"></i>
637637
</a>
638638

639639
</div>

2015/2015-03-27-config-center-disconf/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -709,8 +709,8 @@ <h2 id="Reference"><a href="#Reference" class="headerlink" title="Reference"></a
709709
<div class="post-nav">
710710
<div class="post-nav-next post-nav-item">
711711

712-
<a href="/2015/2015-03-13-sort-algorithm-summary/" rel="next" title="常用排序算法总结(性能+代码)">
713-
<i class="fa fa-chevron-left"></i> 常用排序算法总结(性能+代码)
712+
<a href="/2015/2015-03-05-bigdata-governance/" rel="next" title="大数据治理:为业务提供持续的、可度量的价值">
713+
<i class="fa fa-chevron-left"></i> 大数据治理:为业务提供持续的、可度量的价值
714714
</a>
715715

716716
</div>

0 commit comments

Comments
 (0)