默认的前置camera, 文字”XI”在preview时显示为”IX”(前置camera preview时默认会有mirror效果), 拍摄出来的照片为"XI",如何让拍摄出来的照片也是”IX” , 也就是和preview时保持一致?对于普通单拍(非ZSD或其他拍照模式), 需要修改的代码为norm...
分类:
移动开发 时间:
2014-10-14 04:31:37
阅读次数:
524
第1级词条最重要,第2级词条次重要,第3级词条了解即可。第1级(1) circuit,电路 (L1)(2) linear,线性 (L2)(3) non-linear,非线性 (L2)(4) current,电流 (L3)(5) voltage,电压 (L3)(6) potential,电位 (L3)...
分类:
其他好文 时间:
2014-10-12 16:40:58
阅读次数:
237
%集合去重,Acc初始传入为[],存放的是最终的结果
delSame([],Acc) -> Acc;
delSame([Pre|T],Acc) ->checkSame([X||X
%求交集
crossList(L1,L2) ->
[X||X
%求并集
mergeList(L1,L2)->
delSame(lists:merge(L1,L2),[]).
...
分类:
其他好文 时间:
2014-10-10 00:44:13
阅读次数:
379
代码: #include <stdio.h>
#include <stdlib.h>
#define L1 5
#define L2 3
// 数组元素是顺序存储的
int main(void) {
int arr1[L1] = { 1, 2, 3, 4, 5, };
// 输出一维数组各个元素的地址
for (size_t...
分类:
其他好文 时间:
2014-10-09 20:23:28
阅读次数:
160
1 Apriori介绍Apriori算法使用频繁项集的先验知识,使用一种称作逐层搜索的迭代方法,k项集用于探索(k+1)项集。首先,通过扫描事务(交易)记录,找出所有的频繁1项集,该集合记做L1,然后利用L1找频繁2项集的集合L2,L2找L3,如此下去,直到不能再找到任何频繁k项集。最后再在所有的频...
分类:
其他好文 时间:
2014-10-09 15:50:43
阅读次数:
381
Given a singly linked list L: L0→L1→…→Ln-1→Ln,
reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…
You must do this in-place without altering the nodes' values.
For example,
Given {1,2,3,4}, reorder it t...
分类:
其他好文 时间:
2014-10-08 15:01:15
阅读次数:
159
将一块很长的木板切割成N块,长度分别为L1、L2、…、LN。每次切割需要的开销为当前木板的长度。求出将木板切割完最小开销是多少。 1 #include 2 #include 3 #include 4 using namespace std; 5 6 #define MAX_N 30000 7...
分类:
其他好文 时间:
2014-10-08 12:53:55
阅读次数:
174
Given a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For exam...
分类:
编程语言 时间:
2014-10-08 01:02:44
阅读次数:
268
弗罗贝尼乌斯範数对 p = 2,这称为弗罗贝尼乌斯範数(Frobenius norm)或希尔伯特-施密特範数( Hilbert–Schmidt norm),不过后面这个术语通常只用于希尔伯特空间。这个範数可用不同的方式定义:这里 A* 表示 A 的共轭转置,σi 是 A 的奇异值,并使用了迹函数。弗...
分类:
其他好文 时间:
2014-10-07 22:15:54
阅读次数:
236
Given a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For exam...
分类:
其他好文 时间:
2014-10-07 17:53:53
阅读次数:
221