Given an array of size n, find the majority element. The majority element is the element that appears more than ? n/2 ? times.You may assume that the array is non-empty and the majority element always...
分类:
其他好文 时间:
2015-05-06 17:57:42
阅读次数:
159
Linux中切换用户的命令是su或su -。
su命令和su -命令最大的本质区别就是:前者只是切换了root身份,但Shell环境仍然是普通用户的Shell;而后者连用户和Shell环境一起切换成root身份了。
切换之后可以使用pwd查看一下当前的工作目录,也可以使用echo $PATH查看一下环境变量,观察su和su -的区别。
我们切换用户的时候应该使用的就是su-,切换...
分类:
系统相关 时间:
2015-05-06 17:57:48
阅读次数:
175
uva 11151 Longest PalindromeA palindrome is a string that reads the same from the left as it does from the right. For example, I, GAG and MADAM are palindromes, but ADAM is not. Here, we consider also...
分类:
其他好文 时间:
2015-05-06 17:56:58
阅读次数:
116
准备工作
下载反编译工具apktool、dex2jarjar查看工具jd-gui for mac
1.反编译出资源文件
打开终端cd到存放apktool的目录(可以使用ls 查看当前目录下的文件夹,然后一直查找cd到apktool)
输入 chmod +x apktool 修改apktool为可执行输入 ./apktool d xx.apk 执行反编译操作...
分类:
系统相关 时间:
2015-05-06 17:56:09
阅读次数:
224
pig是处理流 的工具,所以数据集是流对象,处理步骤也是一样的。
Pig中存在按条件处理流对象的方式有
1)filter
X= FILTER A BY (f1 == 8);
2)CASE WHEN THEN ELSE END
CASE expression [ WHEN value THEN value ]+ [ELSE value ]? END
3)B...
分类:
其他好文 时间:
2015-05-06 17:58:04
阅读次数:
99
最近正在研究H.264和HEVC的编码方式,因此分析了一下最常见的H.264编码器——x264的源代码。本文简单梳理一下它的结构。X264的源代码量比较大而且涉及到很多的算法,目前还有很多不懂的地方,因此也不能保证分析的完全正确。目前打算先把已经理解的部分整理出来以作备忘。...
分类:
其他好文 时间:
2015-05-06 17:56:37
阅读次数:
295
mahout利用布尔型数据评估查准率和查全率...
分类:
其他好文 时间:
2015-05-06 17:55:48
阅读次数:
196
首先我们先来看一个程序;我相信看完这个程序;你们可以大概了解:
/*
* 2015年5月6日13:57:22
* 目的:通过栈的数据结构来实现递归
* 深入了解递归的本质。
* 下面我分别举2个例子,就是分别用递归和栈的形式
* 来实现f(n) = 1+2+...+n自然数的相加;方法很简单,
* 主要是为了让我们了解递归的内部实现机制.
*/
/*
* 操作系统在调用递归函数是分...
分类:
其他好文 时间:
2015-05-06 17:54:54
阅读次数:
116
http://www.bnuoj.com/v3/problem_show.php?pid=19715二维线段树模板#include
#include
#include
#include
#define lson l,mid,rt<<1
#define rson mid+1,r,rt<<1|1
#define rep(...
分类:
其他好文 时间:
2015-05-06 17:55:27
阅读次数:
144
1. 函数的定义和调用函数的概念函数是为了完成某种特定任务的代码块,给代码块起个有意义的名字,称之为函数名。当函数需要被执行的时候,调用这个名字就可以执行函数了。可以帮助程序模块化,减少代码冗余、帮助程序员更好理解程序。函数的分类(1)其他程序员已经封装过函数。如打印函数: println("Hello Swift")(2)程序员自己封装的函数。swift函数定义和调用的语法这里注意swift...
分类:
编程语言 时间:
2015-05-06 17:54:44
阅读次数:
100
在之间加上:
path=""
docBase="../ad-0.0.1-SNAPSHOT"
debug="0"
reloadable="true"/>
使用 http://host:port/ 可以直接访问...
分类:
其他好文 时间:
2015-05-06 17:55:33
阅读次数:
136
题目的意思是求解从路标N到路标1的最短路径,简单的最短路径题目,Dijkstra或者Bellman_Ford算法都可以过。
题目有一个坑:输入有重边,所以要选择最小的长度。
下面是AC的代码:
#include
#include
using namespace std;
int cost[1005][1005];
bool vis[1005];
int dis[1005];
c...
分类:
其他好文 时间:
2015-05-06 17:55:23
阅读次数:
120
uva 10626 Buying CokeI often buy Coca-Cola from the vending machine at work. Usually I buy several cokes at once, since my working mates also likes coke. A coke in the vending machine costs 8 Swedish c...
分类:
其他好文 时间:
2015-05-06 17:55:34
阅读次数:
141
最近使用WCF遇到一个问题:当客户端向WCF服务发送一个大量数据时候,发现会提示:
"读取 XML 数据时,超出最大字符串内容长度配额 (8192)。通过更改在创建 XML 读取器时所使用的 XmlDictionaryReaderQuotas
对象的 MaxStringContentLength 属性,可增加此配额。" 于是上网搜索,都说修改配置就可以,但我是初学者,修改半天还没弄出...
分类:
其他好文 时间:
2015-05-06 17:56:41
阅读次数:
126