摘要: public class Solution { public int[] productExceptSelf(int[] nums) { int size=nums.length; int[] res=new int[size]; //先找到有多少个0位 int num_of_zero=0; int sum_... 阅读全文
posted @ 2016-04-20 09:50 阿怪123 阅读(74) 评论(0) 推荐(0)
摘要: /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ public class Solution { public void deleteN... 阅读全文
posted @ 2016-04-20 09:25 阿怪123 阅读(99) 评论(0) 推荐(0)