三门问题 编辑 锁定 三门问题(Monty Hall problem)亦称为蒙提霍尔问题、蒙特霍问题或蒙提霍尔悖论,大致出自美国的电视游戏节目Let's Make a Deal。问题名字来自该节目的主持人蒙提·霍尔(Monty Hall)。参赛者会看见三扇关闭了的门,其中一扇的后面有一辆汽车,选中后 ...
分类:
其他好文 时间:
2016-09-17 23:53:13
阅读次数:
380
GNU的make工作时的执行步骤入下:(想来其它的make也是类似) 1、读入所有的Makefile。 2、读入被include的其它Makefile。 3、初始化文件中的变量。 4、推导隐晦规则,并分析所有规则。 5、为所有的目标文件创建依赖关系链。 6、根据依赖关系,决定哪些目标要重新生成。 7 ...
分类:
其他好文 时间:
2016-09-17 14:54:08
阅读次数:
97
本文用于描述redis的编译安装 1、上传源码包到linux 服务器上;我已经上传到了root目录下:/root/redis-3.2.3.tar.gz 2、解压 3、make 这里可以直接make 是因为redis已经自己写好了make file 了;也就是说不用再执行configure 了、mak ...
分类:
其他好文 时间:
2016-09-17 12:03:09
阅读次数:
150
In order to resolve a dependency, Angular’s DI uses type annotations. To make sure these types are preserved when transpiled to ES5, TypeScript emits ...
分类:
其他好文 时间:
2016-09-17 07:09:37
阅读次数:
111
1,安装所有包 yum -y install gcc-c++ ncurses-devel cmake make perl gcc autoconf automake zlib libxml libgcrypt libtool bison python-devel 2,创建用户,目录,权限 group ...
分类:
数据库 时间:
2016-09-16 16:57:55
阅读次数:
292
系统 CenterOs 6.5 1.安装依赖包(cmake make gcc等,其实好多都有了,不需要更新,为了防止世界被破坏,就装下) yum install gcc gcc-c++ -yyum install -y ncurses-devel.x86_64yum install -y cmake ...
分类:
数据库 时间:
2016-09-16 16:57:23
阅读次数:
256
1.插入配对 std::vector<pair<int,int> > w; w.push_back(make_pair<int,int>(f,s) ); cout <<w[i].first << " " << w[i].second <<endl; 2.元素去重 std::vector<int> a ...
分类:
编程语言 时间:
2016-09-16 14:12:39
阅读次数:
207
so easy sudo apt-get install build-essentialsudo apt-get install libncurses5sudo apt-get install libncurses5-dev happy当然有的时候在执行以上命令的时候会出错,提示要更新“软件列表”, ...
分类:
系统相关 时间:
2016-09-15 16:32:05
阅读次数:
172
编译安装httpd-2.4.23,编译提示出现这个,求解。折腾了一下午了
分类:
Web程序 时间:
2016-09-14 23:34:45
阅读次数:
3233
centos平台编译环境使用如下指令
安装make:
yum -y install gcc automake autoconf libtool make
安装g++:
yum install gcc ...
分类:
其他好文 时间:
2016-09-14 16:56:57
阅读次数:
158