在刚刚结束的CVPR2018: DeepGlobe Road Extraction Challenge(全球卫星图像道路提取)比赛中,北京邮电大学信息与通信工程学院模式识别实验室张闯老师指导的研究生周理琛同学,脱颖而出,取得第一名的好成绩。本届CVPR规模浩大,有超过3309篇论文投稿,接收979篇 ...
分类:
其他好文 时间:
2019-11-06 14:57:57
阅读次数:
186
SpringBoot整合junit 主要分为4步 添加依赖 创建测试类 在测试类上添加注解 在测试类注入测试对象 1:导入依赖包 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-star ...
分类:
编程语言 时间:
2019-11-05 21:28:02
阅读次数:
107
1、spring Data JPA简介 是一个替代hibernate的一个作用于数据库的框架。 2、整合 1、导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-d ...
分类:
编程语言 时间:
2019-11-05 21:24:18
阅读次数:
58
题目链接:https://vjudge.net/problem/POJ-2185 题意:给定由大写字母组成的r×c矩阵,求最小子矩阵使得该子矩阵能组成这个大矩阵,但并不要求小矩阵刚好组成大矩阵,即边界部分可以空缺(见样例)。 思路: 把每一行视作一个字符,然后对r行求next数组,那么r-nex[r ...
分类:
编程语言 时间:
2019-11-05 13:48:25
阅读次数:
80
链接: https://vjudge.net/problem/POJ 2065 题意: For some years, quite a lot of work has been put into listening to electromagnetic radio signals received ...
分类:
其他好文 时间:
2019-11-05 00:31:57
阅读次数:
104
在MyBatis引用类,可以有3种方式,下面逐一介绍。一般来说使用第3重。 1.方式一 在mapper.xml文件中,比如如下的配置: 可见,参数类型和返回值类型都是com.susu.pojo.People,每次都要写这么长长的一串,并且如果mapper.xml中频繁的应用到com.susu.poj ...
分类:
其他好文 时间:
2019-11-04 21:48:01
阅读次数:
118
题目链接:http://poj.org/problem?id=2752 The little cat is so famous, that many couples tramp over hill and dale to Byteland, and asked the little cat to g ...
分类:
其他好文 时间:
2019-11-04 20:03:06
阅读次数:
106
链接: https://vjudge.net/problem/POJ 2891 题意: Elina is reading a book written by Rujia Liu, which introduces a strange way to express non negative integ ...
分类:
其他好文 时间:
2019-11-04 00:09:48
阅读次数:
138
链接: https://vjudge.net/problem/POJ 2689 题意: The branch of mathematics called number theory is about properties of numbers. One of the areas that has c ...
分类:
其他好文 时间:
2019-11-03 23:36:52
阅读次数:
94
"题目" 题意:给出一个二叉树的编号,问形态。 编号依据 1:如果二叉树为空,则编号为0; 2:如果二叉树只有一个节点,则编号为1; 3:所有含有m个节点的二叉树的编号小于所有含有m+1个节点的二叉树的编号; 4:如果一棵含有m个节点的二叉树(左子树为L,右子树为R)的编号为n,要想其它含有m个节点 ...
分类:
其他好文 时间:
2019-11-03 21:54:27
阅读次数:
76