- 博客(6)
- 资源 (3)
- 收藏
- 关注
原创 leetCode之 Reverse Linked List
反转一个单链表: /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ public class Solution { public Li
2016-02-29 17:28:40 174
原创 leetCode之 Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link
2016-02-26 17:59:05 189
原创 leetCode之 Two Sum
Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly one solution. Example: Given nums = [2,
2016-02-25 17:50:59 218
转载 ThreadPoolExecutor线程池
ThreadPoolExecutor的工作机制: 整个ThreadPoolExecutor的任务处理有4步操作: 第一步,初始的poolSize 第二步,当提交的任务数超过了corePoolSize,就进入了第二步操作。会将当前的runable提交到一个block queue中 第三步,如果block queue是个有界队列,当队列满了之后就进入了第三步。如果poolS
2016-02-17 10:14:05 266
原创 利用Object中的key的唯一性去除数组的重复项
利用Object中的key的唯一性去除数组的重复项: // 要转换的数组 var array = [1,2,3,4,5,6,7,6,5,4,3,2]; // 利用Object的对象中key的唯一性,得到一个新的Obj
2015-10-19 23:15:51 816
原创 JavaScript模拟Map的实现
通过JavaScript中Obect模拟Map的几个简单方法: function Map() { // 创建一个Object对象 var obj = {}; // 通过o
2015-10-19 22:45:27 265
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人