Call requires API level 3 (current min is 1): android.content.res.Resources#getBoolean参考文档:http://stackoverflow.com/questions/10322482/android-lint-er...
分类:
移动开发 时间:
2014-07-10 00:41:18
阅读次数:
280
chromium multi-process architecture 本文档从high-level的角度描述Chromium的多进程架构。 问题 要构建一个决不崩溃或挂起的渲染引擎几乎是不可能的。同样的,要构建一个100%安全的渲染引擎也是不可能的。 从某些角度来看,当今的web浏览器有点类似于过...
分类:
其他好文 时间:
2014-07-07 17:06:15
阅读次数:
284
树的层次遍历,比较简单,3个题的做法完全一样,只是在特定的地方对结果进行reverse。1、Binary Tree Level Order Traversal/** * Definition for binary tree * struct TreeNode { * int val; * ...
分类:
其他好文 时间:
2014-07-07 16:39:56
阅读次数:
194
简易解释:在曲面中插入一个平面所形成的轮廓,即是该轮廓的水平集表示,可见,该轮廓的水平集表示有多个。对于图像分割,在图像力的驱动下曲面进行更新。轮廓的数学表达有隐式和显式两种表达。用曲面演化代替Front (C)演进。C(t) = {(x, y)|φ(x, y, t) = 0} ?φ/ ?t + F...
分类:
其他好文 时间:
2014-07-03 10:20:47
阅读次数:
286
SSTable是leveldb 的核心模块,这也是其称为leveldb的原因,leveldb正是通过将数据分为不同level的数据分为对应的不同的数据文件存储到磁盘之中的。为了理解其机制,我们首先看看SSTable中的基本概念。首先看看数据的整体存储结构:可以从图中看到了几个概念:Datablock...
分类:
数据库 时间:
2014-07-01 22:12:32
阅读次数:
282
做完这道题,只能说基本功很重要,数组中套数组就不会用了,过几天吧1做了,看自己到底等没。https://oj.leetcode.com/problems/binary-tree-level-order-traversal-ii/import java.util.*;/** * Definition ...
分类:
编程语言 时间:
2014-07-01 13:30:53
阅读次数:
300
题目:Given a binary tree, return thelevel ordertraversal of its nodes' values. (ie, from left to right, level by level).For example:Given binary tree{3,...
分类:
其他好文 时间:
2014-07-01 12:44:09
阅读次数:
199
题目: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 ...
分类:
其他好文 时间:
2014-07-01 12:26:07
阅读次数:
215
1、错误描述
java.sql.SQLException: ORA-0064:error occurred at recursive SQL level 1.
ORA-06153:unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM.
ORA-02002:error while writing to audit trail.
O...
分类:
数据库 时间:
2014-07-01 08:01:47
阅读次数:
463
select regexp_substr('A,B,C,D,E', '[^,]+', 1, level, 'i') as str
from dual
connect by level
length('A,B,C,D,E') - length(regexp_replace('A,B,C,D,E', ',', '')) + 1;...
分类:
其他好文 时间:
2014-07-01 07:38:06
阅读次数:
217