-------------------------------source---------------------------------#include
#include #include #include #include /* 函数声明 */void tty_write_message1(s...
分类:
系统相关 时间:
2014-05-19 10:30:33
阅读次数:
468
setColumnView是可以用,setRowView还是没效果是这样的来个更诡异的Java代码 收藏代码import java.io.*; import
jxl.*; import jxl.write.*; public class JxlTest { public static void .....
分类:
其他好文 时间:
2014-05-19 10:24:28
阅读次数:
167
Do you know how to write the for-loop
efficiently? Read this to get it. :)
分类:
编程语言 时间:
2014-05-18 19:24:37
阅读次数:
382
文件IO操作相关系统编程
这里主要说两套IO操作接口,分别是:
POSIX标准
read|write接口,函数定义在#include
ISO C标准
fread|fwrite接口,函数定义在#include
有书上说POSIX标准与ISO C标准的区别在于文件读写是否带缓冲区,我则不是很认同,因此POSIX标准下的...
分类:
系统相关 时间:
2014-05-18 18:45:33
阅读次数:
536
JS随机数测试
document.write(Math.random());//生成一个0~1之间的很多位数的随机小数
document.write(Math.round(Math.random()*9+1));//生成一个1~10(包括1和10)的随机整数
document.write(Math.round(Math.random()*90+10));/...
分类:
Web程序 时间:
2014-05-18 09:09:49
阅读次数:
303
【题目】
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.
For example, given n = 3, a solution set is:
"((()))", "(()())", "(())()", "()(())", "()()()"
【题意】
给定n对括号,输出所有可行的括号组合字符串。所谓合法,就是可以Valid Pare...
分类:
其他好文 时间:
2014-05-18 09:06:41
阅读次数:
266
【题目】
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.
【题意】
合并K个有序链表
【思路】
归并
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.
For ...
分类:
其他好文 时间:
2014-05-18 09:05:40
阅读次数:
255
1.同时使用out和response的输出字符流给页面输出数据。");
response.getWriter().write("lucy");%>输出结果是lucy
jack。因为以上两个都是字符流且带有自己的缓冲区,因此JSPWriiter的缓冲区数据在JSP执行完毕之后才将数据刷新给Respon...
分类:
其他好文 时间:
2014-05-18 00:42:04
阅读次数:
269
PageContext类主要的描述的是的JSP页面的上下文环境,可以获取servlet的信息、也可以将当前JSP的上下文环境传递给指定的类实现对JSP页面的操作。1.
获取JSP中所有的数据 1 "); 4 5 out.write( (pageContext.getResponse() == re....
分类:
其他好文 时间:
2014-05-18 00:31:44
阅读次数:
345
This post introduces the challenge and related
solution (Atomic, Locks) on Thread Safety.
分类:
编程语言 时间:
2014-05-17 21:09:33
阅读次数:
500