package cn.rwkj.test;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.io.PrintWriter;import java.net.Serv...
分类:
系统相关 时间:
2014-09-17 18:27:52
阅读次数:
291
package cn.rwkj.test;import java.io.IOException;import java.io.InputStream;import java.net.ServerSocket;import java.net.Socket;public class TestSocket...
分类:
系统相关 时间:
2014-09-17 18:17:02
阅读次数:
289
html代码jstest 测试div css代码@charset "utf-8";.red{width:100px; height:100px; background:#f00;}.blue{width:100px; height:100px; background: blue;...
分类:
编程语言 时间:
2014-09-17 00:58:01
阅读次数:
329
Description
The Genographic Project is a research partnership between IBM and The National Geographic Society that is analyzing DNA from hundreds of thousands of contributors to map how the Earth was...
分类:
其他好文 时间:
2014-09-15 16:02:04
阅读次数:
208
<?php
if(‘ab‘>‘b‘){
echoa;
}else{
echob;
}
?>结果为b;然后看代码:<?php
functionkey_compare_func($key1,$key2)
{
if($key1==$key2)
return0;
elseif($key1>$key2)
return1;
else
return-1;
}
$array1=array(‘blue‘=>1,‘red‘=>2,‘green‘=>3,‘pu..
分类:
Web程序 时间:
2014-09-12 15:23:14
阅读次数:
146
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue.
Here, we will use the integers ...
分类:
编程语言 时间:
2014-09-11 19:26:52
阅读次数:
196
题意:找出所有字符串中最长相同字串解题思路:枚举KMP解题代码: 1 // File Name: getnext.cpp 2 // Author: darkdream 3 // Created Time: 2014年09月09日 星期二 22时35分02秒 4 5 #include 6...
分类:
其他好文 时间:
2014-09-10 12:18:00
阅读次数:
149
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".Clarification:What constitutes...
分类:
编程语言 时间:
2014-09-09 12:07:48
阅读次数:
223