查询版本: perl -M模块名 -e "print
模块名->VERSION"一个例子:查看LWP模块版本(Windows操作系统下)
分类:
其他好文 时间:
2014-05-01 12:44:30
阅读次数:
381
Abstract. In mathematics a Voronoi diagram is a
way of dividing space into a number of regions. A set of points, called seeds,
sites, or generators is...
分类:
其他好文 时间:
2014-05-01 09:46:54
阅读次数:
493
首先想到的是,将这个数进行素因子分解,得到所有的因子,然后取最大的。
首先写一个判断一个数是否是素数的方法: #judge a number whether a prime def
judgePrime(self,number,pme): if number < 2: ...
分类:
编程语言 时间:
2014-05-01 09:05:26
阅读次数:
3333
http://cmakeed.sourceforge.net/eclipse/ cmake
-G"Eclipse CDT4 - Unix Makefiles" -D CMAKE_BUILD_TYPE=Debug
-D_ECLIPSE_VERSION=4.2 ../src
分类:
编程语言 时间:
2014-05-01 08:37:42
阅读次数:
319
Given an array of integers, find two numbers
such that they add up to a specific target number.The function twoSum should
return indices of the two nu...
分类:
其他好文 时间:
2014-05-01 08:35:40
阅读次数:
443
第一种方法在CMD窗口中使用java -version 命令进行查看如果是64位的则会显示
Java HotSpot64-Bit 字样,32位的则没有类似信息。注:这是Sun的JDK,其它版本的JDK不知道输出会是什么样子的第二种方法String
arch = System.getProperty(...
分类:
其他好文 时间:
2014-05-01 08:25:53
阅读次数:
308
声明( declaration )是告诉编译器某个东西的名称和类型( type
),但略去细节。下面是声明的例子:extern int x; //对象(object )声明size_t numDigits( int number );
//函数声明( function ) 声明class...
分类:
编程语言 时间:
2014-05-01 08:20:43
阅读次数:
414
1. 查看内核版本命令: 1) [root@q1test01 ~]# cat
/proc/version Linux version 2.6.9-22.ELsmp (bhcompile@crowe.devel.redhat.com)
(gcc version 3.4.4 20050721 (Red ...
分类:
系统相关 时间:
2014-05-01 07:15:14
阅读次数:
575
链接:http://soj.me/show_problem.php?pid=1007
Description
Mo and Larry have devised a way of encrypting messages. They first decide secretly on the number of columns and write the message (letter...
分类:
其他好文 时间:
2014-04-29 13:23:21
阅读次数:
293
这题就是给了你三种操作,
1:往容器中一个元素 x
2::把容器中的元素x删除
3:查询比 x大的第k个数
想法:添加元素跟删除元素 直接是以数本身为序号然后以 value值为1和-1即可,相当于计数,至于找比x第k个大的数,那就看看当前往后数k个数的第一个数是哪个就可以了,一开始直接找出来,然后往后暴力的扫了一遍,结果错了,没关系,反应很快,直接改了个二分查找,然后就过了,弄清...
分类:
其他好文 时间:
2014-04-29 13:11:21
阅读次数:
326