Given a string S, return the number of substrings of length K with no repeated characters. Example 1: Input: S = "havefunonleetcode", K = 5 Output: 6 ...
分类:
其他好文 时间:
2020-07-20 10:52:27
阅读次数:
55
这道题我还有一些奇怪的地方没有搞懂,这里我先放一篇代码吧! 代码如下: #include<bits/stdc++.h> #define LL long long #define MX 4200 #define MOD 100000000 using namespace std; LL dp[13][ ...
分类:
其他好文 时间:
2020-07-17 13:54:28
阅读次数:
67
在类定义方法,方法的部分代码如下: //获取类所有成员列表 Field[] fields = this.getClass().getDeclaredFields(); for (int i = 0; i < fields.length; i++) { //获取变量名 String fieldname ...
分类:
其他好文 时间:
2020-07-15 13:03:02
阅读次数:
64
## springboot的定时任务 ### 两步编码实现定时任务。 - 开启定时任务注解 :打开冰箱门 @enableScheduling - 设置定时时间,corn表达式。 @scheduled - corn表达式 -- http://cron.qqe3.com corn表达式:空格区分组成部分 ...
分类:
编程语言 时间:
2020-07-14 18:42:27
阅读次数:
75
Self-defined Enum //Season.java public class Season { // step1: fields which are private final private final String seasonName; private final String s ...
分类:
编程语言 时间:
2020-07-11 22:44:37
阅读次数:
67
You are given a doubly linked list which in addition to the next and previous pointers, it could have a child pointer, which may or may not point to a ...
分类:
其他好文 时间:
2020-07-11 10:04:24
阅读次数:
84
1.指定查询哪些字段 方式一: Query query = new Query(); query.fields().include("booking"); //包含该字段 query.fields().exclude("salary");//不包含该字段 Booking booking = mong ...
分类:
其他好文 时间:
2020-07-10 18:34:43
阅读次数:
268
A string S of lowercase English letters is given. We want to partition this string into as many parts as possible so that each letter appears in at mo ...
分类:
其他好文 时间:
2020-07-10 13:24:07
阅读次数:
65
这个问题研究了近两个月,知道这两天,才研究出来是怎么做的。 NX9+VS2012 官方的方法 方法1 1.用NXOPEN C#向导新建exe项目 2.添加代码 NX9+VS2012 using System; using NXOpen; using NXOpen.UF; //新建prt Tag Pa ...
一,对象可以修改 对象是可以修改的,通过对一个对象的属性进行赋值就可以修改该对象的状态了。 1.比如,要改变一个矩形的大小而不改变位置,就可以只修改宽度和高度,如下所示: >>> square_box.width = square_box.width + 50 >>> square_box.heig ...
分类:
编程语言 时间:
2020-07-08 23:22:33
阅读次数:
116