一、环境centos6.5node1:172.30.31.114node2:172.30.31.115node3:172.30.31.108node4:172.30.31.109仲裁点二、安装四个节点均需执行1、安装软件包#yuminstall-ymongodbmongodb-server#echo"thisiskeyfile">/home/keyfile#chownmongodb/home/keyfile#chmod600/home/keyfile#v..
分类:
数据库 时间:
2014-09-26 01:42:28
阅读次数:
413
题目链接:Codeforces 468B Two Sets
题目大意:给出n个数,要求将n个数分配到两个集合中,集合0中的元素x,要求A-x也再0中,同理1集合。
解题思路:类似二分图匹配的方法。
#include
#include
#include
#include
#include
using namespace std;
const int maxn = 1e5...
分类:
其他好文 时间:
2014-09-25 13:13:38
阅读次数:
240
1.select2介绍 官网: http://ivaynberg.github.io/select2/ Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, a...
分类:
Web程序 时间:
2014-09-24 12:22:16
阅读次数:
1379
Sparse CodingSparse coding is a class of unsupervised methods for learning sets of over-complete bases to represent data efficiently. —— 过完备的基,无监督 The...
分类:
其他好文 时间:
2014-09-19 18:57:05
阅读次数:
272
sets类型及操作set是集合,它是string类型的无序集合。通过hash table实现,添加、删除、查找的复杂度都是0(1)。对集合我们可以实现取交际、差集并集。通过这些操作我们可以实现SNS中的好友推荐和blog的tag(标签)功能 sadd 向集合中添加元素,成功返回1,失败返回0,重复值...
分类:
其他好文 时间:
2014-09-19 18:56:25
阅读次数:
187
如何声明一个存储过程CREATE PROCEDURE 存储过程名(IN 输入变量名 输入变量类型,OUT 输出变量名 输出变量类型)紧跟其后的是存储过程属性列表常用的有:LANGUAGE SQL、MODIFIES SQL DATA、RESULT SETS 1(返回结果集个数)l存储过程体以begin...
分类:
数据库 时间:
2014-09-18 13:05:33
阅读次数:
364
1 python的set和其他语言类似, 是一个无序不重复元素集, 基本功能包括关系测试和消除重复元素. 集合对象还支持union(联合), intersection(交), difference(差)和sysmmetric difference(对称差集)等数学运算. 2 3 sets ...
分类:
编程语言 时间:
2014-09-17 18:09:42
阅读次数:
265
android doc中是这样描述的:public voidsetImageResource(int resId)这是其中的一个方法,参数resld是这样:ImageView.setImageResource(R.drawable.icon);看下面这段话Sets a drawable as the...
分类:
其他好文 时间:
2014-09-12 14:48:13
阅读次数:
224
A data processor (104) is described. The data processor (104) is capable of decoding and executing a first instruction (212) of a first instruction se...
分类:
移动开发 时间:
2014-09-09 22:45:39
阅读次数:
319
/**
* Sets the port of the local Socks5 proxy. Default is 7777. If you set the port to a negative
* value Smack tries the absolute value and all following until it finds an open port.
...
分类:
其他好文 时间:
2014-09-07 03:18:54
阅读次数:
250