Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.Subscribe to see which com...
分类:
其他好文 时间:
2015-12-24 15:02:15
阅读次数:
176
我需要测试的方法是 public 方法: public ResponseResult subscribe(SysSubscription sysSubscription) throws JsonGenerationException, JsonMappingException, IOExceptio...
分类:
其他好文 时间:
2015-12-23 19:29:16
阅读次数:
289
什么是观察者模式?观察者模式(有时又被称为发布(Publish)-订阅(Subscribe)模式、模型-视图(View)模式、源-收听者(Listener)模式或从属者模式)是软件设计模式的一种。在此种模式中,一个目标物件管理所有相依于它的观察者物件,并且在它本身的状态改变时主动发出通知。这通常透过...
分类:
其他好文 时间:
2015-12-21 18:27:19
阅读次数:
216
Given numRows, generate the first numRows of Pascal's triangle.
For example, given numRows = 5,
Return
[
[1],
[1,1],
[1,2,1],
[1,3,3,1],
[1,4,6,4,1]
]
Subscribe to see ...
分类:
其他好文 时间:
2015-12-18 10:40:02
阅读次数:
146
使用办法:订阅端:Subscribe频道名称发布端:publish频道名称发布内容客户端例子:redis127.0.0.1:6379>subscribenewsReadingmessages...(pressCtrl-Ctoquit)1)"subscribe"2)"news"3)(integer)1...
分类:
其他好文 时间:
2015-12-17 10:47:29
阅读次数:
156
1.观察者模式观察者模式也叫发布/订阅(Publish/Subscribe)模式,是MVC(模型-视图-控制器)模式的重要组成部分观察者模式的具体应用有两个---通知机制和KVO(Key-Value-Observing)机制1.1 通知机制 通知机制与委托机制不同的是,前者是“一对多”的对象之间的....
分类:
其他好文 时间:
2015-12-15 12:00:54
阅读次数:
128
Given inorder and postorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree.Subscribe to s...
分类:
其他好文 时间:
2015-12-13 15:19:08
阅读次数:
178
Given a sorted linked list, delete all duplicates such that each element appear only once.
For example,
Given 1->1->2, return 1->2.
Given 1->1->2->3->3, return 1->2->3.
Subscribe to see wh...
分类:
其他好文 时间:
2015-12-12 08:22:29
阅读次数:
121
以下转自:http://blog.csdn.net/yangbutao/article/details/10395599rabbitMQ中consumer通过建立到queue的连接,创建channel对象,通过channel通道获取message, Consumer可以声明式的以API轮询poll的...
分类:
其他好文 时间:
2015-12-06 14:23:12
阅读次数:
597