上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页
摘要: public class Solution { public int divide(int dividend, int divisor) { boolean isNegtive=dividend0||dividend>0&&divisor=ldivisor) { if(ldividend>=l) { ... 阅读全文
posted @ 2017-09-23 06:22 Weiyu Wang 阅读(128) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/v_july_v/article/details/7041827 阅读全文
posted @ 2017-09-23 06:00 Weiyu Wang 阅读(111) 评论(0) 推荐(0) 编辑
摘要: class Solution { public ListNode reverseKGroup(ListNode head, int k) { if(head==null||k==1) return head; ListNode preNode=new ListNode(0); preNode.next=head; ... 阅读全文
posted @ 2017-09-23 05:07 Weiyu Wang 阅读(104) 评论(0) 推荐(0) 编辑
摘要: Iteration 阅读全文
posted @ 2017-09-23 02:07 Weiyu Wang 阅读(89) 评论(0) 推荐(0) 编辑
摘要: class Solution { public ListNode mergeKLists(ListNode[] lists) { PriorityQueue que=new PriorityQueue((a,b)->a.val-b.val); for(ListNode list:lists) if(list!=null) ... 阅读全文
posted @ 2017-09-23 01:51 Weiyu Wang 阅读(101) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public List generateParenthesis(int n) { List ret=new ArrayList(); generateParenthesis("", 0, 2*n, ret); return ret; } void generateParenth... 阅读全文
posted @ 2017-09-23 01:41 Weiyu Wang 阅读(105) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public ListNode removeNthFromEnd(ListNode head, int n) { ListNode pre=new ListNode(0); pre.next=head; ListNode p=pre,q=pre; for(int i=0;i<n... 阅读全文
posted @ 2017-09-23 01:30 Weiyu Wang 阅读(112) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public List> fourSum(int[] nums, int target) { List> ret=new ArrayList>(); Arrays.sort(nums); for(int i=0;i<nums.length;i++) i... 阅读全文
posted @ 2017-09-23 01:23 Weiyu Wang 阅读(122) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public List letterCombinations(String digits) { LinkedList que=new LinkedList(); if(digits.length()==0) return que; String[] btns=new S... 阅读全文
posted @ 2017-09-23 01:11 Weiyu Wang 阅读(135) 评论(0) 推荐(0) 编辑
摘要: class Solution { public int threeSumClosest(int[] nums, int target) { Arrays.sort(nums); int ret=nums[0]+nums[1]+nums[2]; for(int i=0;i<nums.length;i++) { ... 阅读全文
posted @ 2017-09-22 12:55 Weiyu Wang 阅读(116) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页