"; // mysql_select_db("_blog"); $query_test="select *from _blog_"; $result_q=mysql_query($query_test); ...
分类:
Web程序 时间:
2014-06-19 00:10:32
阅读次数:
285
class TestCase: def run(self, result=None): if result is None: result=self.defaultTestResult() result.startTest(self) t...
分类:
其他好文 时间:
2014-06-18 23:51:59
阅读次数:
355
有时在编写struts.xml时会报错,但是找不出有什么她方有问题。也能正常运行MyEclipse有地方去struts的xml进行了验证,经查找把这里的build去掉就可以了
分类:
系统相关 时间:
2014-06-18 16:30:42
阅读次数:
281
1.Firefox之firebug调试js,可用id搜索,打断点调试。2.js中的||和&& a.逻辑运算符逻辑或运算符 (||)result = expression1 || expression2;两表达式有或两等于 True则 result True见http://itworktor.bl.....
分类:
Web程序 时间:
2014-06-18 16:16:55
阅读次数:
299
public static String[] split(String str, String limit) { List result = new ArrayList(); char[] chars = limit.toCharArray(); ...
分类:
其他好文 时间:
2014-06-18 16:01:29
阅读次数:
216
给定一个矩阵,寻找连通域个数:前后左右相同为连通ex:0 1 0 10 1 1 10 0 1 00 1 0 0输出2利用深度搜索思路: 1 public static int getCount(int[][] A) { 2 int result = 0; 3 ...
分类:
编程语言 时间:
2014-06-15 12:23:22
阅读次数:
758
原文部分内容来源于网上其他博客,不过由于时间长了,忘记参考的是谁的了,在此说声抱歉。。
先贴出一段html页面:
HTML Parser
想学习
Name
Result
Time
Synopsis
9
想学习
<font
...
分类:
Web程序 时间:
2014-06-15 10:54:38
阅读次数:
340
Source CodeProblem:3415User:wangyuchengMemory:16492KTime:704MSLanguage:C++Result:AcceptedSource Code#include#include#include#includeusing namespace st...
分类:
其他好文 时间:
2014-06-14 21:41:07
阅读次数:
215
题目描述:输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字class Solution {public: vector spiralOrder(vector > &matrix) { vector result; int nRows = matrix.s...
分类:
其他好文 时间:
2014-06-14 21:27:53
阅读次数:
156
Problem Description
give you a string, please output the result of the following function mod 1000000007
n is the length of the string
f() is the function of fibonacci, f(0) = 0, f(1) = 1...
a...
分类:
其他好文 时间:
2014-06-14 11:45:49
阅读次数:
243