码迷,mamicode.com
首页 >  
搜索关键字:idplresultset result    ( 10204个结果
LeetCode: Subsets [078]
class Solution { public: void dfs(vector<vector >&result, vectorcombination, vector&candidates, int kth, int k, int index2add){ // 当前正在确定组合中的第kth个数,将把候选集candidates中index2add索引位的值作为第kth个数加到组合中 combination.push_back(ca...
分类:其他好文   时间:2014-06-07 01:21:47    阅读次数:220
python 装饰器与AOP
无高见 1.缓存 from functools import wraps lineseq = '==' * 20 def memo( func ): cache = {} @wraps( func ) def wrapper( *args ): result = cache.get( args ) if resul...
分类:编程语言   时间:2014-06-05 11:07:06    阅读次数:324
用python做中文自然语言预处理
这篇博客根据中文自然语言预处理的步骤分成几个板块。以做LDA实验为例,在处理数据之前,会写一个类似于实验报告的东西,用来指导做实验,OK,举例:一,实验数据预处理(python,结巴分词)1.对于爬取的评论做分词和词性标注处理(mac-result.txt)2.对于结果只用公版的停用词表去停用词,不...
分类:编程语言   时间:2014-06-03 06:45:21    阅读次数:385
自己写的一段重试代码
public class TestRetry { public static void main(String[] args) { retry(5); } private static void retry(int maxCount) { int count = 0; boolean result = false; do { count++; System....
分类:其他好文   时间:2014-06-03 05:10:35    阅读次数:179
快速求幂 POW优化
#include #include #include #include using namespace std; int pow(int x, int n) {     int result = 1;     while (n > 0)     {         if (n % 2==1)                   result *= x;...
分类:其他好文   时间:2014-06-03 05:08:33    阅读次数:399
shell--函数返回值
#!/bin/bashfunction myfun(){ echo "echo result" return 0}returnValue=$(myfun)echo "${returnValue}"这里returnValue得到的并不是0,而是"echo result",想要得到funct...
分类:其他好文   时间:2014-06-02 17:19:17    阅读次数:190
scala 数组转换
for(...)yield循环创建了一个类型与原始集合相同的新集合。vala1=Array(2,3,5,7,11) valresult=for(elem<-a1)yield2*elem for(elem<-result){ println(elem) }结果4 6 10 14 22通过守卫:for中的if来实现处理那些满足特定条件的元素。vala1=Array(2,3,5,7,11) v..
分类:其他好文   时间:2014-06-01 13:48:56    阅读次数:267
hp:兄弟连之面向对象版图形计算器2
上篇说到通过result.class.php来分流,由于三个类都继承了shape这个类,让我们来看一下,面向对象中的继承。 shape.class.shape文件 <?php abstract class shape{ public $shapeName; abstract function area(); ab...
分类:其他好文   时间:2014-06-01 13:05:53    阅读次数:273
php pdo分页
文章标题 文章内容 编辑 prepare($query); $result_acticle->execute(); $msg_count =$result_act...
分类:Web程序   时间:2014-05-31 21:10:01    阅读次数:386
struts2拦截器demo
按照网上的一些资料配置的,期间也出现过几个错误。其中有个错误,是关于struts.xml里面package配置的问题,因为里面的几个标签是有顺序的。顺序是:result-typesinterceptorsdefault-interceptor-refdefault-action-refdefault...
分类:其他好文   时间:2014-05-29 12:06:45    阅读次数:163
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!