3. Longest Substring Without Repeating Characters Given a string, find the length of the longest substring without repeating characters. Examples: Giv ...
分类:
其他好文 时间:
2017-05-09 11:23:13
阅读次数:
131
题目描写叙述: Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1={11, 12, 13, 14} ...
分类:
其他好文 时间:
2017-05-07 11:33:45
阅读次数:
221
一、Halcon编程之图像处理 1、读取图片 1、读取单个图片: 1.1 直接用算子read_image read_image (Image, 'D:/3.tiff') 2、读取多个图片 2.1 定义一个存放图片路径的数组,通过循环读取 imagepath:=[] imagepath[0]:=['D ...
分类:
其他好文 时间:
2017-05-06 17:38:44
阅读次数:
215
tesseract sh训练脚本 opencv 文本图片预处理 https://coding.net/u/mengning/p/np2016/git/blob/master/BloodTestReportOCR/imgproc.py ...
分类:
其他好文 时间:
2017-05-04 20:08:10
阅读次数:
195
题目链接:http://ac.jobdu.com/problem.php?pid=1004 详解连接:https://github.com/Pacsiy/JobDu 参考代码: ...
分类:
其他好文 时间:
2017-04-25 00:34:57
阅读次数:
193
数值变量的特征和可视化 ·数据集中趋势的测量(measures of center) — 均值(mean)、中位数(median)、众数(mode) ·数据分散趋势的测量(measus of spread) — 值域(range:max-min)、方差(variance)、标准差(standard ...
分类:
编程语言 时间:
2017-04-12 13:32:49
阅读次数:
269
传送门:http://poj.org/problem?id=3579 题意 给你n个数,然后求它们两两相减的绝对值,然后找出这些绝对值的中中位数。 解题思路: ...
分类:
其他好文 时间:
2017-04-12 12:35:18
阅读次数:
194
numpy 数据的产生 matplotlib ...
分类:
编程语言 时间:
2017-04-12 11:27:33
阅读次数:
216
最近一直有同学问为何会出现这种编译错误,既然需求如此之大,我就写篇文章解释一下吧。 先解释一下,代码在编译的时候,你的电脑中发生了一件什么事吧。 编译指的就是把人类可以理解的文本程序“翻译”成电脑可以识别执行的指令清单,充当翻译官的角色的就是编译器。 一般来说,童鞋使用的devc++内部包含了g++ ...
分类:
其他好文 时间:
2017-04-09 18:37:08
阅读次数:
357
#include using namespace std; const int maxn=500011; const int inf=1 #define pb push_back #define cl(a,b) memset(a,b,sizeof(a)); int a[maxn]; int main... ...
分类:
其他好文 时间:
2017-04-03 16:00:52
阅读次数:
203