using System; namespace EventDelegation { /// <summary> /// 事件参数类 /// </summary> public class EventDate : EventArgs { public int eventID; public int a ...
C++(template模板 && 类模板 成员函数类外实现) 类模板,成员函数类外实现 #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> using namespace std; template<class ...
分类:
编程语言 时间:
2021-04-27 14:30:06
阅读次数:
0
D. Explorer Space 一点一点把题目理顺。看看哪些是可以推断出来的。 对于 dp 的题目而言,要一点一点去分析其中什么东西是可以递推的,正如这道题中 \(dp[x][y][k]=min\{dp[xx][yy][k-1]+d[x][y][i]\}\) 然后再进行记忆化搜索即可。 // C ...
分类:
其他好文 时间:
2021-04-27 14:17:50
阅读次数:
0
index.js import Vue from 'vue'; import Vuex from 'vuex'; import base from './modules/base'; import user from './modules/user'; Vue.use(Vuex); // store ...
分类:
其他好文 时间:
2021-04-26 13:39:52
阅读次数:
0
c++(继承 &&菱形继承) #define _CRT_SECURE_NO_WARNINGS #include <iostream> using namespace std; class Animal { public: int m_Age; }; class Sheep :virtual publ ...
分类:
编程语言 时间:
2021-04-26 13:09:57
阅读次数:
0
copy running-config startup-config 重启后保存的配置不会重置。 test#copy running-config startup-config Destination filename [startup-config]? Building configuration ...
分类:
其他好文 时间:
2021-04-24 13:28:32
阅读次数:
0
后缀数组构造方法: 1.倍增 直接参考刘汝佳蓝书 时间复杂度不优秀,但代码实现简单,细节处理较多,建议参考思路后背过代码。 #include<iostream> #include<cstdio> #include<cmath> #include<algorithm> #include<cstring ...
分类:
编程语言 时间:
2021-04-24 13:23:55
阅读次数:
0
<style> .jsj-class { width: 300px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } </style> 1 <div class="jsj-class"></div> 效果图: ...
分类:
Web程序 时间:
2021-04-24 13:14:57
阅读次数:
0
//php获取指定范围内的日期 function periodDate($startDate, $endDate) { $startTime = strtotime($startDate); $endTime = strtotime($endDate); $arr = []; while ($sta ...
分类:
Web程序 时间:
2021-04-23 12:27:28
阅读次数:
0
排序思路 头函数 algorithm 中有一个函数是 upper_bound(start,end,value) 它可以返回区间 [start,end] 中第一个大于等于 value 的值的位置 再加上 vector 中自带的插入函数 insert(space,value) 就可以对数据进行类似于二分 ...
分类:
编程语言 时间:
2021-04-23 12:12:05
阅读次数:
0