摘要:
public class Solution { public int removeElement(int[] nums, int val) { if (nums.length == 0) { return 0; } int lef... 阅读全文
posted @ 2015-12-03 03:04
Weizheng_Love_Coding
阅读(121)
评论(0)
推荐(0)
摘要:
public class Solution { public String convert(String s, int numRows) { if (numRows == 1) { return s; } int flg = 0;... 阅读全文
posted @ 2015-12-03 02:09
Weizheng_Love_Coding
阅读(121)
评论(0)
推荐(0)
摘要:
public class LRUCache { HashMap map = new HashMap(); ListNode start; ListNode end; int capacity; int cur_size; public LRUCache(int c... 阅读全文
posted @ 2015-12-03 01:59
Weizheng_Love_Coding
阅读(119)
评论(0)
推荐(0)