Making the GradeTime Limit:1000MSMemory Limit:65536KTotal Submissions:4656Accepted:2206DescriptionA straight dirt road connects two fields on FJ's far...
分类:
其他好文 时间:
2015-05-08 14:27:46
阅读次数:
95
#include#define f(a,b) a##b#define g(a) #a#define h(a) g(a)int main(){ printf("%s\n",h(f(1,2))); 宏h(a) 是g(a),没有#,所以需要进行宏展开 ...
分类:
编程语言 时间:
2015-05-08 14:28:14
阅读次数:
190
/* * 对已有文件的数据续写*/ import java.io.*;public class FileWriterDemo3 { public static void main(String[] args) throws IOException { // 传递一个true参数,代表不覆盖已有的.....
分类:
其他好文 时间:
2015-05-08 14:27:46
阅读次数:
87
tar-c: 建立压缩档案-x:解压-t:查看内容-r:向压缩归档文件末尾追加文件-u:更新原压缩包中的文件这五个是独立的命令,压缩解压都要用到其中一个,可以和别的命令连用但只能用其中一个。下面的参数是根据需要在压缩或解压档案时可选的。-z:有gzip属性的-j:有bz2属性的-Z:有compres...
分类:
系统相关 时间:
2015-05-08 14:26:08
阅读次数:
128
Problem DescriptionFred Mapper is considering purchasing some land in Louisiana to build his house on. In the process of investigating the land, he le...
分类:
其他好文 时间:
2015-05-08 14:24:43
阅读次数:
112
import java.net.*;public class IPDemo {public static void main(String[] args) throws Exception { InetAddress i=InetAddress.getLocalHost(); /* * 输出本机.....
分类:
其他好文 时间:
2015-05-08 14:27:06
阅读次数:
93
测试了下奥作磁力链接收录量:http://www.oshoh.com/list.aspx?keyword=%e5%9b%bd%e5%ae%b6%e5%9c%b0%e7%90%86什么是奥修磁力链接(OSHOH.COM)(Magnet URI)? 简单的说:类似下面这样以“magnet:?”开头的字....
分类:
Web程序 时间:
2015-05-08 14:24:20
阅读次数:
461
IDEA 进行编译代码的时候,特别是新项目 特别容易出现 编码错误,但是 File-Encoding中设置的又没有问题,而且maven 是能打包的,就是用 idea 自带的 编译的时候 就会出现提示 找不到字符,错误开头会提示Information:java: Multiple encodings ...
分类:
其他好文 时间:
2015-05-08 14:26:41
阅读次数:
592
linux环境为UBUNTU14.04,YII框架的版本是1.1.17将下载的YII解压缩,压缩后会有三个文件夹,”demos,requirements,framework”,demos 当然就是演示了,暂时不用,而requirements是独立于YII框架的,用于检测服务器信息的。timeless...
分类:
其他好文 时间:
2015-05-08 14:24:52
阅读次数:
130
Implement a trie withinsert,search, andstartsWithmethods.Note:You may assume that all inputs are consist of lowercase lettersa-z.由于用的是 26位字母的array, 所以...
分类:
其他好文 时间:
2015-05-08 14:26:09
阅读次数:
101
SAX解析实例:http://www.iteye.com/topic/763895 Java Sax解析是按照xml文件的顺序一步一步的来解析,在解析xml文件之前,我们要先了解xml文件的节点的种类,一种是ElementNode,一种是TextNode。 为了更好地解决大型 XML 处理的问题,....
分类:
其他好文 时间:
2015-05-08 14:26:16
阅读次数:
121
环境描写叙述 主从环境项目MasterSlaveOS版本号SuSE 11sp1 x86_64SuSE 11sp1 x86_64MySQL版本号官方版本号5.5.37官方版本号5.5.37hostnameNDMC74NDMC75IP192.168.223.132192.168.223.133PORT3...
分类:
数据库 时间:
2015-05-08 14:24:12
阅读次数:
294
参考自:http://blog.csdn.net/crx05/article/details/7362252function test() { var myText = ""; myText = $.ajax({ ...
分类:
Web程序 时间:
2015-05-08 14:24:16
阅读次数:
133
转自:http://blog.csdn.net/sjf0115/article/details/7387467主要功能:在一个主界面(主Activity)上能连接往许多不同子功能模块(子Activity上去),当子模块的事情做完之后就回到主界面,或许还同时返回一些子模块完成的数据交给主Activit...
分类:
移动开发 时间:
2015-05-08 14:25:19
阅读次数:
225
并查集+最小生成树畅通工程Time Limit: 1000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 19824Accepted Submission(s): 8449Prob...
分类:
其他好文 时间:
2015-05-08 14:23:54
阅读次数:
118
网上看到一篇不错的介绍shellcode的入门文章,我就大致翻译一下,算是自己真正跨入二进制安全相关领域的学习吧。原文地址:http://www.primalsecurity.net/0x0-shellcoding-tutorial-introduction-to-asm/ 以下为翻译内容:(非逐句...
分类:
系统相关 时间:
2015-05-08 14:25:40
阅读次数:
188