You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:
其他好文 时间:
2014-11-11 22:56:05
阅读次数:
218
Description
The SUM problem can be formulated as follows: given four lists
A, B, C, D of integer values, compute how many quadruplet
(a, b, c, d ) AxBxCxD
are such that a + b + c + d = 0 . In...
分类:
其他好文 时间:
2014-11-11 22:55:20
阅读次数:
173
importjava.util.List;
importjava.util.Map;
publicinterfaceIIndexService<T>{
/**
*插入数据
*@paramt
*@return
*/
publicbooleaninsertOne(Tt);
/**
*批量插入数据
*@paramlists
*@return
*/
publicbooleaninsertList(List<T>lists);
/**
*删除单条数据
*..
分类:
其他好文 时间:
2014-11-11 14:35:13
阅读次数:
177
1.What is language for? Some people seem to think it is for practicing grammar or learning lists of words—the longer the words the better. That's wron...
分类:
其他好文 时间:
2014-11-10 21:09:35
阅读次数:
153
This chapter describes in detail the troubleshooting tools that are available in JDK 7. In addition, the chapter lists operating-system-specific tools...
分类:
其他好文 时间:
2014-11-10 17:34:14
阅读次数:
349
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first
two lists.
递归版
/**
* Definition for singly-linked list.
...
分类:
其他好文 时间:
2014-11-10 13:55:03
阅读次数:
195
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.这道混合插入有序链...
分类:
其他好文 时间:
2014-11-10 06:27:42
阅读次数:
191
归并两个有序序列为一个有序序列Merge Two Sorted ListsMerge two sorted linked lists and return it as a new list. The new list should be made by splicing together the n...
分类:
其他好文 时间:
2014-11-09 16:34:47
阅读次数:
182
以前做过合并数组,这次是合并链表,写起来很快,第一次提交,忘记new一个listNode的时候传参数,导致编译错误,修改完这个错误后就没问题了,代码因该是很简单的。需要注意的是,凡是sorted的,都是从小到大排列,另外leetcode上面的链表都没有尾巴,便利的时候需要注意。 1 /** 2 *....
分类:
其他好文 时间:
2014-11-09 00:59:17
阅读次数:
164
Apidemos-->Views-Lists-Cursor(people)-主要用到了获取手机联系人信息,属于内容提供者的范畴,要想了解这方面的内容,能够參考官方docs/sdk/docs/guide/topics/providers/content-provider-basics.html这里简单...