Skip to content

Commit

Permalink
更新 EventBus源码分析的链接
Browse files Browse the repository at this point in the history
  • Loading branch information
francistao committed Jul 7, 2016
1 parent cd1a178 commit 2ccbf31
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions Part3/Algorithm/剑指Offer/合并两个排序的链表.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#合并两个排序的链表
---

题目:

>输入两个递增排序的链表,合并这两个链表并使新链表中的结点仍然是按照递增排序的。例如输入图中的链表1和链表2,则合并之后的升序链表3所示:
![](http://img.blog.csdn.net/20150801211607173?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center =500x200)

容易犯的错误:

1. 写代码之前没有对合并的过程想清楚,最终合并出来的链表要么中间断开了要么并没有做到递增排序
2. 代码在鲁棒性方面存在问题,程序一旦有特殊的输入(如空链表)就会崩溃。

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* [Retrofit源码分析](http://www.jianshu.com/p/c1a3a881a144)
* [Glide源码分析](http://frodoking.github.io/2015/10/10/android-glide/)
* [EventBus用法详解](https://github.com/GeniusVJR/LearningNotes/blob/master/Part1/Android/EventBus用法详解.md)
* EventBus源码分析
* [EventBus源码分析](http://p.codekk.com/blogs/detail/54cfab086c4761e5001b2538)
* [Android ORM 框架之 greenDAO 使用心得](http://www.open-open.com/lib/view/open1438065400878.html)
* [RxJava](http://gank.io/post/560e15be2dca930e00da1083)
* 设计一套图片异步加载缓存方案
Expand Down

0 comments on commit 2ccbf31

Please sign in to comment.