上一页 1 ··· 8 9 10 11 12
  2017年4月21日
摘要: 4月 21日 1 7 Reverse Integer 先算新结果,与旧结果比较,如果不等 返回0 public int reverse(int x) { int result = 0; while (x != 0) { int tail = x % 10; int newR = result * 1 阅读全文
posted @ 2017-04-21 11:17 wheleetcode 阅读(134) 评论(0) 推荐(0) 编辑
  2017年4月3日
摘要: 4月3号 1. 1 Two Sum bugfree public int[] twoSum(int[] numbers, int target) { int[] result = new int[2]; Map<Integer, Integer> map = new HashMap<Integer, 阅读全文
posted @ 2017-04-03 11:23 wheleetcode 阅读(170) 评论(0) 推荐(0) 编辑
  2017年3月31日
摘要: 1.适配器设计模式 TomCat 中的GenericServlet 中实现了Servlet接口,其中适配了 ServletConfig 将一个类的接口(ServletConfig)转换为客户希望的另一个接口(servlet)适配器模式使得原本那些由于接口不兼容而不能一起工作的类可以在一起工作 2. 阅读全文
posted @ 2017-03-31 21:45 wheleetcode 阅读(63) 评论(0) 推荐(0) 编辑
  2017年3月29日
摘要: 1. Intersection of two arrays 一个hash表存一数组,一hash表存结果 1 public int[] intersection(int[] nums1, int[] nums2) { 2 // Write your code here 3 HashSet<Intege 阅读全文
posted @ 2017-03-29 19:41 wheleetcode 阅读(118) 评论(0) 推荐(0) 编辑
  2016年12月3日
摘要: 1 Remove Element lintcode-172 描述: 删相同元素,反现有长度 记忆:标不同元素,反标记值 1 public int removeElement(int[] a, int elem) { 2 // write your code here 3 int index = 0; 阅读全文
posted @ 2016-12-03 18:32 wheleetcode 阅读(426) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12