布拉德很想退休
布拉德很想退休
全部文章
分类
algorithm(10)
C++(17)
java(43)
OS(1)
python(1)
中间件(2)
代码(1)
前端(2)
安全(3)
数据库(8)
文件(1)
日记(1)
未归档(27)
网络(5)
设计模式(1)
归档
标签
去牛客网
登录
/
注册
xinxin的博客
当做一个日记本
全部文章
(共122篇)
会场安排问题-贪心思想
#include<iostream> #include<cstring> #include<algorithm> using namespace std; struct meet{ int s; int e; }; bool cmp(mee...
2020-08-19
0
483
子集和问题-dfs回溯法
#include<iostream> #include<cstring> #include<algorithm> using namespace std; const int maxv=1e5+5; int n=0,res=0; int a[maxv]; int ...
2020-08-19
0
526
codeforces-A. Equation
Let's call a positive integer composite if it has at least one divisor other than 1 and itself. For example: the following numbers are composite: 102...
2020-08-19
0
459
1.Java基础-注解
(1) 注解 初步 : JDK1.5之后内部提供的三个注解: @Deprecated 意思是“废弃的,过时的” @Override 意思是“重写、覆盖” @SuppressWarnings 意思是“压缩警告” 注解(Annotation)相当于一种标记,在程序中加入注解就等于...
2020-08-19
0
671
day1-springboot入门
2020-08-19
0
389
idea解决 Could not autowire. No beans of 'xxx' type found.报错
方法1:在mapper文件上加@Repository注解,这是从spring2.0新增的一个注解,用于简化 Spring 的开发,实现数据访问 方法2:在mapper文件上加@Component注解,把普通pojo实例化到spring容器中,相当于配置文件中的<bean id=&quo...
2020-08-19
0
593
Springboot集成Mybatis - 小记
(1)POM文件引入: <!--Mybatis--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artif...
2020-08-19
0
442
Idea快捷键 之 Springboot 与 热部署
(1) 快捷键: idea中查看方法参数;查看类、方法、属性注释 Ctrl+P:查看方法参数 Ctrl+Q:查看类、方法、属性注释 (2) 热部署: 准备工作: 将相关依赖引入到POM配置中: <!-- 热部署 --> <dependency> ...
2020-08-19
0
845
IntelliJ IDEA 如何设置代码提示模板
(1)打开IDEA 的 setting , 进入Live Template ,点右侧的 + 号 , 然后在下面编辑 代码。 (2) 点击OK 。 (3)右键 >> 点击 Change Context >>勾选java即可。 (4)测试 ok
2020-08-19
0
515
阿里巴巴代码规范 * - 转载
https://blog.csdn.net/jv_kevin/article/details/88732616
2020-08-19
0
1189
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页