Given an array of n integers where n > 1, nums,
return an array output such that output[i] is
equal to the product of all the elements ofnums except nums[i].
Solve it without division and in O(...
分类:
其他好文 时间:
2015-07-20 16:21:30
阅读次数:
102
Problem Definition: Compare two version numbers version1 and version2. If version1 > version2 return 1, if version1 f2 else (-1 if f1b a=[1] b=[0,2...
分类:
其他好文 时间:
2015-07-20 16:00:24
阅读次数:
66
071 Simplify Path有了split,天下我有class Solution: # @param {string} path # @return {string} def simplifyPath(self, path): stack = [] ...
分类:
其他好文 时间:
2015-07-20 15:58:56
阅读次数:
92
go的匿名函数: func no_func() { // 匿名函数 1 f := func(i, j int) (result int) { // f 为函数地址 result = i + j return result } fmt.Fprintf(os.Stdout, "f = %v ?f(1,3) = %v\n", f, f(1, 3)) // 匿名函...
分类:
其他好文 时间:
2015-07-20 14:36:57
阅读次数:
141
题目:
Given n, generate all structurally unique BST's (binary search trees) that store values 1...n.
For example,
Given n = 3, your program should return all 5 unique BST's shown below.
...
分类:
编程语言 时间:
2015-07-20 14:36:18
阅读次数:
128
题目:
Given a string containing only digits, restore it by returning all possible valid IP address combinations.
For example:
Given "25525511135",
return ["255.255.11.135", "255.255.111.35"]...
分类:
编程语言 时间:
2015-07-20 13:07:47
阅读次数:
173
#includeint main(void){unsigned n;while(scanf("%d", &n) != EOF){printf("%d\n\n", (1+n)*n/2);}return 0;}n+1可能出现溢出情况,所以需要将n的数据类型改为unsigned
分类:
其他好文 时间:
2015-07-20 12:48:01
阅读次数:
107
一、三者之间的关系图: 二、演示 1、printStackTrace()演示: public class Test { public int div(int a, int b) { try { return a/b; } catch (Exception ...
分类:
编程语言 时间:
2015-07-20 12:17:19
阅读次数:
134
最近刷了好几次的oj,好受伤好多都是类似的题目。最长回文子串string preprocess(string &str)
{
string afterProcessStr="#";
for(int i=0;i<str.size();++i)
{
afterProcessStr += str.substr(i, 1)+"#";
}
return...
分类:
其他好文 时间:
2015-07-20 10:57:58
阅读次数:
111
#include
#include
#include
using namespace std;
const int MAXN = 1 << 17;
struct SegTree {
int n, m;
int a[MAXN + MAXN];
static int L(int i) { return i << 1;...
分类:
编程语言 时间:
2015-07-20 10:54:42
阅读次数:
189