TreeYou are to determine the value of the leaf node in a given binary tree that is the terminal node of a path of least value from the root of the bi....
分类:
其他好文 时间:
2014-08-10 18:11:20
阅读次数:
273
Android的开发也可以归类为嵌入式设备的开发,即便不是嵌入式开发,依然要注意对内存和处理的使用。养成一个好的习惯对自己的帮助是很大的。
在Log的源码中可以看到这样的注释:
The order in terms of verbosity, from least to most is
* ERROR, WARN, INFO, DEBUG, VERBOSE. Verbose should ...
分类:
移动开发 时间:
2014-08-07 19:06:50
阅读次数:
217
开启tomcat时出现以上错误// 进入root帐户 在普通用户也可以sudo -s//用编辑器打开.bashrc文件gedit .bashrc 在普通用户下注意加上sudo//在最后一行添加环境变量(文件位置根据自己的实际情况)JAVA_HOME=/usr/local/java/jdk1.7.0_...
分类:
编程语言 时间:
2014-08-06 18:21:13
阅读次数:
519
1001:Inversion
模版题,求逆序数对。有多少逆序数对,就可以剪掉多少。
1003:Least common multiple
对于每一个子集,lcm为2的a的最大值次方*3的b的最大值次方。
所以我们只需要求出以某个b为b的最大值的时候,a的最大值的分布情况即可。
我们先把b从小到大排序。
对于某一个b,我门只需要求出之前出现过的a比当前a小的数量为x;
那么就可知对于这...
分类:
其他好文 时间:
2014-08-06 14:57:51
阅读次数:
214
http://www.tldp.org/HOWTO/Multicast-HOWTO.html 1. Introduction 1.1 What is Multicast Multicast is... a need. Well, at least in some scenarios. If you ...
分类:
其他好文 时间:
2014-08-06 14:10:01
阅读次数:
328
Find the contiguous subarray within an array (containing at least one number) which has the largest sum.
For example, given the array [?2,1,?3,4,?1,2,1,?5,4],
the contiguous subarray [4,?1,2,1] ha...
分类:
其他好文 时间:
2014-08-05 22:37:50
阅读次数:
188
BAge SortInput:Standard InputOutput:Standard OutputYou are given the ages (in years) of all people of a country with at least 1 year of age. You know ...
分类:
其他好文 时间:
2014-08-05 02:57:48
阅读次数:
230
【题目】Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations:getandset.get(key)- Get the ...
分类:
其他好文 时间:
2014-08-04 21:10:27
阅读次数:
218
By default, for a CREATE FUNCTION statement to be accepted, at least one of DETERMINISTIC, NOSQL, or READS SQL DATA must be specified explicitly.
Otherwise an error occurs:
ERROR1418 (HY000): This function has none of DETERMINISTIC, NO SQL,or READSSQL DATA...
分类:
数据库 时间:
2014-08-04 17:46:57
阅读次数:
296
LRU是Least Recently Used 近期最少使用算法,一种页面置换算法,其实现较为简单,Java实现代码如下 1 import java.util.LinkedList; 2 import java.util.List; 3 4 public class LRU { 5 6 ...
分类:
其他好文 时间:
2014-08-04 10:53:47
阅读次数:
182