Error: /home/y/my_note/nodejs/myapp/views/index.jade:20 18| -list=[{name:'zhangsan',age:25,email:'zhangsan@123.com'}] 19| -e...
分类:
系统相关 时间:
2015-02-09 15:50:24
阅读次数:
1284
Given a collection of integers that might contain duplicates,S, return all possible subsets.Note:Elements in a subset must be in non-descending order....
分类:
其他好文 时间:
2015-02-09 15:39:14
阅读次数:
131
题目描述:Given an arraySofnintegers, are there elementsa,b,cinSsuch thata+b+c= 0? Find all unique triplets in the array which gives the sum of zero.Note:E...
分类:
其他好文 时间:
2015-02-09 15:37:52
阅读次数:
146
Given amxngrid filled with non-negative numbers, find a path from top left to bottom right whichminimizesthe sum of all numbers along its path.Note:Yo...
分类:
其他好文 时间:
2015-02-09 15:33:25
阅读次数:
165
Given two sorted integer arrays A and B, merge B into A as one sorted array.Note:You may assume that A has enough space (size that is greater or equal...
分类:
其他好文 时间:
2015-02-09 15:32:58
阅读次数:
146
Given a set of distinct integers,S, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set must not co...
分类:
其他好文 时间:
2015-02-09 15:26:35
阅读次数:
122
Given a binary tree, return theinordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[1,3,2].Note...
分类:
其他好文 时间:
2015-02-09 14:05:14
阅读次数:
107
Two elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A solution using O(n) space is ...
分类:
其他好文 时间:
2015-02-09 14:04:10
阅读次数:
148
Given an integern, return the number of trailing zeroes inn!.Note:Your solution should be in logarithmic time complexity.给定一个整数n,返回n!(n的阶乘)数字中的后缀0的个数。...
分类:
其他好文 时间:
2015-02-09 00:37:06
阅读次数:
256
昨天大半夜装一个RH5+Oracle版本,期间碰到了几件事情,陈述如下,以此铭记。
1. 安装前需要配置内核参数,可参考Oracle官方文档推荐的最低值来设置,但往往机器自身有些参数值已有了,例如kernel.shmmax、kernel.shmall,也参考过网上不少帖子,设置的值有所差别,此时官方文档中的一句话值得我们注意:
“Note: If the current value o...
分类:
数据库 时间:
2015-02-08 16:52:09
阅读次数:
263