1.first of all ,you will meet many problem no excute permisson,pls do : chmod -R +x APQ8084/2. build/core/base_rules.mk:130: *** external/webrtc/src/....
分类:
其他好文 时间:
2014-12-05 12:25:44
阅读次数:
249
1. 广度优先搜索介绍广度优先搜索算法(Breadth First Search),又称为"宽度优先搜索"或"横向优先搜索",简称BFS。它的思想是:从图中某顶点v出发,在访问了v之后依次访问v的各个未曾访问过的邻接点,然后分别从这些邻接点出发依次访问它们的邻接点,并使得“先被访问的顶点的邻接点先于...
分类:
其他好文 时间:
2014-12-05 12:19:53
阅读次数:
336
这几天在看文章的时候,看到这么一段话:“First, we normalize thegrayscale intensity in the eye region for each of the aligned facialimages to zero mean and unit variance.”...
分类:
其他好文 时间:
2014-12-05 12:09:19
阅读次数:
549
转自:http://blog.csdn.net/luoyeyu1989/article/details/8275237
分类:
数据库 时间:
2014-12-04 22:47:55
阅读次数:
219
http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=18649
给你一段不超过5000行的文本,让你从中找出所有的单词,并且按照字典序排序,注意不区分大小写。
题目意思还是很好懂的,但是开始误认为单词总数不超过5000,但是还有很多重复的,于是不幸的run error,所以数组最少需要开到10万去,并且普通排序是必然超时的!...
分类:
其他好文 时间:
2014-12-04 20:07:55
阅读次数:
182
Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu...
分类:
其他好文 时间:
2014-12-04 13:56:04
阅读次数:
128
This is my first shot to write a blog in English. Enjoy! ;)CocoaPods is a popular way to control iOS projects' dependency. And it's easy to use.If you...
分类:
其他好文 时间:
2014-12-04 12:02:28
阅读次数:
148
This is my first shot to write a blog in English. Enjoy! ;)CocoaPods is a popular way to control iOS projects' dependency. And it's easy to use.If you...
分类:
其他好文 时间:
2014-12-04 11:48:28
阅读次数:
143
今天学习seajs,遇到return $.merge(['module1'], $.merge(m2.run(), m3.run()));不明白啥意思,上网查了一下明白了,记录一下jQuery.merge( first, second )返回:Array描述:合并两个数组内容到第一个数组。versi...
分类:
Web程序 时间:
2014-12-04 11:40:13
阅读次数:
146
explain显示了mysql如何使用索引来处理select语句以及连接表。可以帮助选择更好的索引和写出更优化的查询语句。使用方法,在select语句前加上explain就可以了:如:explainselectsurname,first_nameforma,bwherea.id=b.idEXPLAIN列的解释:table:显示这一行的数据是关于哪张表..
分类:
数据库 时间:
2014-12-04 10:24:09
阅读次数:
197