Roman to IntegerGiven a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.SOLUTION 1:思路:从后往前遍历罗马数字,如果某...
分类:
其他好文 时间:
2014-11-23 20:12:01
阅读次数:
145
模板匹配 从源图像中发掘目标图像 将目标图像块逐像素滑动,然后度量此区域的源图像块和目标图像块的匹配程度 匹配都最高的像素位置作为最终定位 void matchTemplate(InputArray image, InputArray templ, OutputArray result, int m...
分类:
其他好文 时间:
2014-11-23 17:23:59
阅读次数:
240
Wildcard MatchingImplement wildcard pattern matching with support for '?' and '*'.'?' Matches any single character.'*' Matches any sequence of charact...
分类:
其他好文 时间:
2014-11-23 10:27:55
阅读次数:
174
在处理和保存XML文件时,出现The processing instruction target matching "[xX][mM][lL]" is not allowed 错误,也就是你的xml配置文件格式错误。所以,要自己检查一下格式,这个在网上是搜不到的。最容易疏忽的错误就是,用eclips...
分类:
其他好文 时间:
2014-11-23 01:50:48
阅读次数:
201
题目链接:http://poj.org/problem?id=1580
题意:给出两个串a,b,求它们的最大匹配度。最大匹配度=最大匹配个数*2/(len_a+len_b)
因为a和b的最开始匹配的部位都是任意的,所以枚举它们最开始匹配的部位即可。复杂度O(len_a*len_b*(k))k
其实这个穿应该都不是很长(不然这么挫的办法不可能0MS过。。)
#include
#includ...
分类:
其他好文 时间:
2014-11-22 18:52:50
阅读次数:
191
参考自http://stackoverflow.com/questions/19478244/how-does-a-case-anonymous-function-really-work-in-scalahttp://www.scala-lang.org/files/archive/nightly/...
分类:
其他好文 时间:
2014-11-19 15:32:55
阅读次数:
244
Implement wildcard pattern matching with support for'?'and'*'.'?' Matches any single character.'*' Matches any sequence of characters (including the e...
分类:
其他好文 时间:
2014-11-16 11:57:11
阅读次数:
145
'?' Matches any single character.'*' Matches any sequence of characters (including the empty sequence).The matching should cover the entire input stri...
分类:
其他好文 时间:
2014-11-15 06:35:33
阅读次数:
152
描述Given two strings A and B, whose alphabet consist only ‘0’ and ‘1’. Your task is only to tell how many times does A appear as a substring of B? For ...
分类:
其他好文 时间:
2014-11-13 20:39:39
阅读次数:
139
英文名称:impedance matching基本概念 信号传输过程中负载阻抗和信源内阻抗之间的特定配合关系。一件器材的输出阻抗和所连接的负载阻抗之间所应满足的某种关系,以免接上负载后对器材本身的工作状态产生明显的影响。对电子设备互连来说,比如信号源连放大器,前级连后级,仅仅要后一级的输入阻抗大于前...
分类:
其他好文 时间:
2014-11-11 16:21:41
阅读次数:
285