码迷,mamicode.com
首页 >  
搜索关键字:idplresultset result    ( 10204个结果
第一个php网页
"; // 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
MyEclipse对Struts2配置文件较检异常 Invalid result location value/parameter
有时在编写struts.xml时会报错,但是找不出有什么她方有问题。也能正常运行MyEclipse有地方去struts的xml进行了验证,经查找把这里的build去掉就可以了
分类:系统相关   时间:2014-06-18 16:30:42    阅读次数:281
js学习
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
Java-寻找矩阵连通域个数
给定一个矩阵,寻找连通域个数:前后左右相同为连通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解析器——jericho-html-3.3解析table
原文部分内容来源于网上其他博客,不过由于时间长了,忘记参考的是谁的了,在此说声抱歉。。 先贴出一段html页面: HTML Parser 想学习 Name Result Time Synopsis 9 想学习 <font ...
分类:Web程序   时间:2014-06-15 10:54:38    阅读次数:340
poj 3415 后缀数组分组+排序+并查集
Source CodeProblem:3415User:wangyuchengMemory:16492KTime:704MSLanguage:C++Result:AcceptedSource Code#include#include#include#includeusing namespace st...
分类:其他好文   时间:2014-06-14 21:41:07    阅读次数:215
剑指offer (20) 打印螺旋矩阵
题目描述:输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字class Solution {public: vector spiralOrder(vector > &matrix) { vector result; int nRows = matrix.s...
分类:其他好文   时间:2014-06-14 21:27:53    阅读次数:156
Acdreamoj1116(Gao the string!)字符串hash+二分+矩阵快速幂
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!