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

Skip to content

Commit d7ecf41

Browse files
committed
Site updated: 2018-07-16 12:11:18
1 parent b721dd5 commit d7ecf41

File tree

73 files changed

+404
-421
lines changed

Some content is hidden

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

73 files changed

+404
-421
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -532,14 +532,18 @@ <h3 id="4、算法框架"><a href="#4、算法框架" class="headerlink" title="
532532
<div class="post-nav">
533533
<div class="post-nav-next post-nav-item">
534534

535+
<a href="/2010/2010-05-22-greedy-algorithm/" rel="next" title="五大常用算法之三:贪心算法">
536+
<i class="fa fa-chevron-left"></i> 五大常用算法之三:贪心算法
537+
</a>
538+
535539
</div>
536540

537541
<span class="post-nav-divider"></span>
538542

539543
<div class="post-nav-prev post-nav-item">
540544

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

545549
</div>

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

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -533,18 +533,14 @@ <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-dynamic-programming-algorithm/" rel="next" title="五大常用算法之二:动态规划算法">
537-
<i class="fa fa-chevron-left"></i> 五大常用算法之二:动态规划算法
538-
</a>
539-
540536
</div>
541537

542538
<span class="post-nav-divider"></span>
543539

544540
<div class="post-nav-prev post-nav-item">
545541

546-
<a href="/2010/2010-05-22-greedy-algorithm/" rel="prev" title="五大常用算法之三:贪心算法">
547-
五大常用算法之三:贪心算法 <i class="fa fa-chevron-right"></i>
542+
<a href="/2010/2010-05-22-divide-and-conquer-algorithm/" rel="prev" title="五大常用算法之一:分治算法">
543+
五大常用算法之一:分治算法 <i class="fa fa-chevron-right"></i>
548544
</a>
549545

550546
</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-greedy-algorithm/" rel="next" title="五大常用算法之三:贪心算法">
568-
<i class="fa fa-chevron-left"></i> 五大常用算法之三:贪心算法
567+
<a href="/2010/2010-05-22-branch-and-bound-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="/2011/2011-05-22-skiplist/" rel="prev" title="跳表SkipList">
578-
跳表SkipList <i class="fa fa-chevron-right"></i>
577+
<a href="/2010/2010-05-22-dynamic-programming-algorithm/" rel="prev" title="五大常用算法之二:动态规划算法">
578+
五大常用算法之二:动态规划算法 <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-backtracking-algorithm/" rel="next" title="五大常用算法之四:回溯法">
550-
<i class="fa fa-chevron-left"></i> 五大常用算法之四:回溯法
549+
<a href="/2010/2010-05-22-divide-and-conquer-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-branch-and-bound-algorithm/" rel="prev" title="五大常用算法之五:分支限界法">
560-
五大常用算法之五:分支限界法 <i class="fa fa-chevron-right"></i>
559+
<a href="/2010/2010-05-22-greedy-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-branch-and-bound-algorithm/" rel="next" title="五大常用算法之五:分支限界法">
561-
<i class="fa fa-chevron-left"></i> 五大常用算法之五:分支限界法
560+
<a href="/2010/2010-05-22-dynamic-programming-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-divide-and-conquer-algorithm/" rel="prev" title="五大常用算法之一:分治算法">
571-
五大常用算法之一:分治算法 <i class="fa fa-chevron-right"></i>
570+
<a href="/2010/2010-05-22-backtracking-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-divide-and-conquer-algorithm/" rel="next" title="五大常用算法之一:分治算法">
606-
<i class="fa fa-chevron-left"></i> 五大常用算法之一:分治算法
605+
<a href="/2010/2010-05-22-backtracking-algorithm/" rel="next" title="五大常用算法之四:回溯法">
606+
<i class="fa fa-chevron-left"></i> 五大常用算法之四:回溯法
607607
</a>
608608

609609
</div>

2013/2013-12-05-meituan-datawarehouse-evolution/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -634,8 +634,8 @@ <h3 id="还有很多挑战"><a href="#还有很多挑战" class="headerlink" tit
634634

635635
<div class="post-nav-prev post-nav-item">
636636

637-
<a href="/2013/2013-12-09-flume-log-system-arch/" rel="prev" title="基于Flume的美团日志收集系统(一)架构和设计">
638-
基于Flume的美团日志收集系统(一)架构和设计 <i class="fa fa-chevron-right"></i>
637+
<a href="/2013/2013-12-09-flume-log-system-optimization./" rel="prev" title="基于Flume的美团日志收集系统(二)改进和优化">
638+
基于Flume的美团日志收集系统(二)改进和优化 <i class="fa fa-chevron-right"></i>
639639
</a>
640640

641641
</div>

2013/2013-12-09-flume-log-system-arch/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -638,8 +638,8 @@ <h3 id="5-3-日志大小异常监控"><a href="#5-3-日志大小异常监控" cl
638638
<div class="post-nav">
639639
<div class="post-nav-next post-nav-item">
640640

641-
<a href="/2013/2013-12-05-meituan-datawarehouse-evolution/" rel="next" title="美团数据仓库的演进">
642-
<i class="fa fa-chevron-left"></i> 美团数据仓库的演进
641+
<a href="/2013/2013-12-09-flume-log-system-optimization./" rel="next" title="基于Flume的美团日志收集系统(二)改进和优化">
642+
<i class="fa fa-chevron-left"></i> 基于Flume的美团日志收集系统(二)改进和优化
643643
</a>
644644

645645
</div>
@@ -648,8 +648,8 @@ <h3 id="5-3-日志大小异常监控"><a href="#5-3-日志大小异常监控" cl
648648

649649
<div class="post-nav-prev post-nav-item">
650650

651-
<a href="/2013/2013-12-09-flume-log-system-optimization./" rel="prev" title="基于Flume的美团日志收集系统(二)改进和优化">
652-
基于Flume的美团日志收集系统(二)改进和优化 <i class="fa fa-chevron-right"></i>
651+
<a href="/2014/2014-01-23-mt-confhub/" rel="prev" title="数据开放平台的配置管理">
652+
数据开放平台的配置管理 <i class="fa fa-chevron-right"></i>
653653
</a>
654654

655655
</div>

2013/2013-12-09-flume-log-system-optimization./index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -575,8 +575,8 @@ <h2 id="4-未来发展"><a href="#4-未来发展" class="headerlink" title="4
575575
<div class="post-nav">
576576
<div class="post-nav-next post-nav-item">
577577

578-
<a href="/2013/2013-12-09-flume-log-system-arch/" rel="next" title="基于Flume的美团日志收集系统(一)架构和设计">
579-
<i class="fa fa-chevron-left"></i> 基于Flume的美团日志收集系统(一)架构和设计
578+
<a href="/2013/2013-12-05-meituan-datawarehouse-evolution/" rel="next" title="美团数据仓库的演进">
579+
<i class="fa fa-chevron-left"></i> 美团数据仓库的演进
580580
</a>
581581

582582
</div>
@@ -585,8 +585,8 @@ <h2 id="4-未来发展"><a href="#4-未来发展" class="headerlink" title="4
585585

586586
<div class="post-nav-prev post-nav-item">
587587

588-
<a href="/2014/2014-01-23-mt-confhub/" rel="prev" title="数据开放平台的配置管理">
589-
数据开放平台的配置管理 <i class="fa fa-chevron-right"></i>
588+
<a href="/2013/2013-12-09-flume-log-system-arch/" rel="prev" title="基于Flume的美团日志收集系统(一)架构和设计">
589+
基于Flume的美团日志收集系统(一)架构和设计 <i class="fa fa-chevron-right"></i>
590590
</a>
591591

592592
</div>

2014/2014-01-23-mt-confhub/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -564,8 +564,8 @@ <h1 id="未来发展"><a href="#未来发展" class="headerlink" title="未来
564564
<div class="post-nav">
565565
<div class="post-nav-next post-nav-item">
566566

567-
<a href="/2013/2013-12-09-flume-log-system-optimization./" rel="next" title="基于Flume的美团日志收集系统(二)改进和优化">
568-
<i class="fa fa-chevron-left"></i> 基于Flume的美团日志收集系统(二)改进和优化
567+
<a href="/2013/2013-12-09-flume-log-system-arch/" rel="next" title="基于Flume的美团日志收集系统(一)架构和设计">
568+
<i class="fa fa-chevron-left"></i> 基于Flume的美团日志收集系统(一)架构和设计
569569
</a>
570570

571571
</div>

0 commit comments

Comments
 (0)