Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.Solution:...
分类:
其他好文 时间:
2014-10-21 02:17:26
阅读次数:
157
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers....
分类:
其他好文 时间:
2014-10-21 02:16:08
阅读次数:
163
Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Your algor...
分类:
其他好文 时间:
2014-10-21 02:14:37
阅读次数:
266
0出发 每个顶点经过一次 回到0 最小花费.记忆化搜索: 1 // s: 已经访问过的节点状态 v: 当前位置 2 int dfs(int s, int v) 3 { 4 if(dp[s][v]>=0) 5 return dp[s][v]; 6 if(s==(1>...
分类:
其他好文 时间:
2014-10-21 00:43:11
阅读次数:
285
#include
using namespace std;
int main()
{
cout
return 0;
}...
分类:
其他好文 时间:
2014-10-20 23:22:54
阅读次数:
219
Given a binary tree, return thebottom-up level ordertraversal of its nodes' values. (ie, from left to right, level by level from leaf to root).For exa...
分类:
其他好文 时间:
2014-10-20 23:17:30
阅读次数:
261
problem: Given a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new length.Do not allocate extra sp...
分类:
其他好文 时间:
2014-10-20 22:53:53
阅读次数:
217
一》onclick="javascript:if (confirm('您确定要删除吗?注意:此操作不可恢复,请谨慎操作!')){return true;} return false;" 二》 原文地址
分类:
编程语言 时间:
2014-10-20 22:37:05
阅读次数:
276
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first
two lists.
/**
* Definition for singly-linked list.
* publ...
分类:
其他好文 时间:
2014-10-20 21:28:05
阅读次数:
233
学习underscore.js的时候,发现源码中经常出现类似下面的代码:
if (context === void 0) return func;
if (array == null) return void 0;
以前没有见过这种写法,到网上搜了一些资料,刚好发现stackoverflow上也有人提出类似的疑问。这里总结归纳下,做个笔记。void其实是javascript中的一个函数...
分类:
编程语言 时间:
2014-10-20 21:25:54
阅读次数:
232