上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 56 下一页
摘要: The King’s ProblemTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 1142Accepted Submission(s): 424Problem DescriptionIn the Kingdom of Silence, the king has a new problem. There are N cities in the kingdom and there are M directional roads between t 阅读全文
posted @ 2013-06-15 16:11 Jack Ge 阅读(465) 评论(0) 推荐(0) 编辑
摘要: Summer HolidayTime Limit: 10000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1147Accepted Submission(s): 503Problem DescriptionTo see a World in a Grain of SandAnd a Heaven in a Wild Flower,Hold Infinity in the palm of your handAnd Eternity in an hour.—— William 阅读全文
posted @ 2013-06-15 09:20 Jack Ge 阅读(515) 评论(0) 推荐(0) 编辑
摘要: Proving EquivalencesTime Limit: 4000/2000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1842Accepted Submission(s): 698Problem DescriptionConsider the following exercise, found in a generic linear algebra textbook.Let A be an n × n matrix. Prove that the followin 阅读全文
posted @ 2013-06-15 08:53 Jack Ge 阅读(827) 评论(0) 推荐(0) 编辑
摘要: 安装指令:sudo apt-get install apache2安装结束后:产生的启动和停止文件是:/etc/init.d/apache2启动:sudo apache2 start停止:sudo apache2 stop重新启动:sudo apache2 restart配置文件保存在 /etc/apache2 目录下 普通的apache发行版本配置文件是:httpd.conf,Ubuntu发行版本的主配置文件是:apache2.conf conf.d目录,包含的配置文件也会影响全局,其它包如果需要使用 apache 来为之服务的话可能会往里面添加文件、符号链接 envvars文件,在里面.. 阅读全文
posted @ 2013-06-11 13:11 Jack Ge 阅读(1500) 评论(0) 推荐(0) 编辑
摘要: 一,至于怎样安装配置mysql,网上有很多教程。。。。。。。。。。二, 登录到mysql服务器上: mysql -uroot -p 紧接着输入密码就可以了。三,my sql 命令的使用:以分号或\g结束,\c取消一行命令,\h帮助 1、显示数据库:show databases; 2、建数据库:create database [if not exists] 数据库名; 3、建数据表: create table [if not exists] 表名 (字段名1 类型。。。。。。。。) eg: create table student (编号 int auto... 阅读全文
posted @ 2013-06-10 12:51 Jack Ge 阅读(264) 评论(0) 推荐(0) 编辑
摘要: gcc/g++参数详解2009-02-18 16:21这 篇文档是我的关于gcc参数的笔记,我很怀念dos年代我用小本子,纪录所有的dos 命令的参数.哈哈,下面的东西可能也不是很全面,我参考了很多的书,和gcc的帮助.不全的原因是,有可能我还没有看到这个参数,另一种原因是,我可能还 不会用它 不过,我会慢慢的补齐的.哈哈 如果你要转在本文章请保留我email(pianopan@beeship.com)和文章的全面性.[介绍]gcc and g++分别是gnu的c & c++编译器 gcc/g++在执行编译工作的时候,总共需要4步1.预处理,生成.i的文件[预处理器cpp]2.将预处理 阅读全文
posted @ 2013-06-09 14:45 Jack Ge 阅读(985) 评论(0) 推荐(0) 编辑
摘要: pcap,即packet capture library 抓包库,这个抓包库给抓包系统提供了一个高层次的接口。所有网络上的数据包,甚至是那些发送给其他主机的,通过这种机制,都是可以捕获的。它也支持把捕获的数据包保存为本地文件和从本地文件读取信息。 还有一些详细介绍可以参考:http://baike.baidu.com/view/6584893.htm libpcap 的一些介绍,http://baike.baidu.com/view/1319961.htm and 这是libpcap的下载资料 http://www.tcpdump.org/release/有一些步骤或者安装错误的解... 阅读全文
posted @ 2013-06-09 10:35 Jack Ge 阅读(4897) 评论(0) 推荐(0) 编辑
摘要: apt-get安装(快)sudo apt-get install libxext6 libxext-devlibqt4-devlibqt4-gui libqt4-sql qt4-dev-tools qt4-doc qt4-designer qt4-qtconfig "python-qt4-*"python-qt4编译安装(慢) 1, 安装SIP 从 http://www.riverbankcomputing.co.uk/software/sip/download 下载压缩包解压 sudo python configure.py make sudo make inst... 阅读全文
posted @ 2013-06-05 16:16 Jack Ge 阅读(13973) 评论(0) 推荐(0) 编辑
摘要: 一个月前研究了下PyQt4,感觉比较不错。相比wxpython,界面美观了很多,并且将界面设计与代码逻辑很好的分离了开来。关于PyQt4的资料也不少,这里我将我找到的资料汇总一下,以防自己以后忘得一干二净。1.PyQt4资料链接http://www.riverbankcomputing.comhttp://wiki.woodpecker.org.cn/moin/PyQthttp://www.commandprompt.com/community/pyqt/book1http://wiki.python.org/moin/PyQthttp://code.google.com/p/pyqt-doc 阅读全文
posted @ 2013-06-05 15:45 Jack Ge 阅读(548) 评论(0) 推荐(0) 编辑
摘要: 最近学习python语言,碰到数据类型间的转换问题。看到一篇文章总结的挺详细,收藏之备用。类型转换 : 1 int(x [,base ]) 将x转换为一个整数 2 long(x [,base ]) 将x转换为一个长整数 3 float(x ) 将x转换到一个浮点数 4 complex(real [,imag ]) 创建一个复数 5 str(x ) 将对象 x 转换为字符串 6 repr(x ) 将对象 x 转换为表达式字符串 7 eval(str ) ... 阅读全文
posted @ 2013-06-04 19:28 Jack Ge 阅读(872) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 56 下一页