在1中随意写code , 在 2中 会提示 com.google.common.util.concurrent.UncheckedExecutionException: java.lang.IllegalArgumentException: No matching constant for [1] ...
万用字符(wildcard) 以动物Animal类为例,怎样才能创建出一种ArrayList<?>里面既可以保存ArrayList<Dog>,又可以保存ArrayList<Cat>? public void takeAnimals(ArrayList<? extends Animal> animal ...
分类:
其他好文 时间:
2017-07-14 23:57:55
阅读次数:
322
转载自http://www.renfei.org/blog/bipartite-matching.html 二分图的最大匹配、完美匹配和匈牙利算法 这篇文章讲无权二分图(unweighted bipartite graph)的最大匹配(maximum matching)和完美匹配(perfect m ...
分类:
编程语言 时间:
2017-07-14 22:14:40
阅读次数:
233
仅仅要涉及JNI开发都涉及到Android.mk编写,它也是一种makefile语言. 以上一篇博客中提供的project为例! <1> : 信息打印 : 既然是一种简易语言那么首先应该知道可以打印脚本信息的语法部分:一个是基本信息类型,一个是警告,错误类型 $(info TEXT......) 这 ...
分类:
移动开发 时间:
2017-07-13 10:34:56
阅读次数:
263
Implement wildcard pattern matching with support for '?' and '*'. 所以考虑用回溯。 此博客讲解的很详细,http://blog.csdn.net/u012848330/article/details/52596618 ...
分类:
其他好文 时间:
2017-07-12 15:28:26
阅读次数:
175
算法旨在用尽可能简单的思路解决这个问题。理解算法也应该是一个越看越简单的过程,当你看到算法里的一串概念,或者一大坨代码,第一感觉是复杂,此时最好还是从样例入手。通过一个简单的样例,并编程实现,这个过程事实上就能够理解清楚算法里的最重要的思想,之后扩展。对算法的引理或者更复杂的情况。对算法进行改进。最 ...
分类:
其他好文 时间:
2017-07-11 19:32:40
阅读次数:
214
Implement regular expression matching with support for '.' and '*'. 1.p为空,那s必然也为空 2.s为空,看p的第二字符是否为*,为*的话 则为isMatch(s,p.substring(2)); 3.都不为空,p的第二字符为*, ...
分类:
其他好文 时间:
2017-07-11 15:53:42
阅读次数:
126
preview: '.' Matches any single character. '*' Matches zero or more of the preceding element. The matching should cover the entire input string (not p... ...
分类:
其他好文 时间:
2017-07-10 10:37:37
阅读次数:
179
使用string中的assign赋值函数报错,代码为: 最后发现assign函数的原型为 将代码改为以下即可 附 assign函数 及 char*、char[]与string转换方式 1. string --> char * 2. char * --> string 不过,变为string后使用pr ...
分类:
其他好文 时间:
2017-07-09 19:37:08
阅读次数:
197
在上一帖的实战中,我们用到了grep的"-Po"的用法。首先,我们来看看这几个参数的含义:-P,--perl-regexp
InterpretPATTERNasaPerlregularexpression.Thisishighly
experimentalandgrep-Pmaywarnofunimplementedfeatures.
-o,--only-matching
Printonlythematched(non-empty)pa..
分类:
其他好文 时间:
2017-07-08 13:25:45
阅读次数:
1036