摘要: OrderDao 1 public PageBean findByUser(String uid, int pc) throws SQLException { 2 List exprList = new ArrayList(); 3 exprList.add(n... 阅读全文
posted @ 2015-09-08 15:58 尾巴草 阅读(839) 评论(0) 推荐(0) 编辑
摘要: problem:Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.F... 阅读全文
posted @ 2015-09-08 14:43 尾巴草 阅读(118) 评论(0) 推荐(0) 编辑
摘要: Given a linked list, swap every two adjacent nodes and return its head. For example,Given 1->2->3->4, you should return the list as 2->1->4->3.Your al... 阅读全文
posted @ 2015-09-08 14:37 尾巴草 阅读(118) 评论(0) 推荐(0) 编辑