<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>layui</title> <meta name="renderer" content="webkit"> <meta http-equiv="X-UA-Compatible" c ...
分类:
其他好文 时间:
2020-07-18 19:48:24
阅读次数:
475
给定一个大小为n≤106的数组。 有一个大小为k的滑动窗口,它从数组的最左边移动到最右边。 您只能在窗口中看到k个数字。 每次滑动窗口向右移动一个位置。 以下是一个例子: 该数组为[1 3 -1 -3 5 3 6 7],k为3。 窗口位置最小值最大值 [1 3 -1] -3 5 3 6 7 -1 3 ...
分类:
其他好文 时间:
2020-07-18 16:01:03
阅读次数:
57
linux下core dump【总结】 在linux下,程序莫名突然崩溃了怎么办,有的程序有日志,有的程序没有则么办,或者自己忘记定义了怎么办,而且,有没有其他途径能配合程序日志更快的解决问题? 基本概念: 当程序运行的过程中异常终止或崩溃,操作系统会将程序当时的内存状态记录下来,保存在一个文件中, ...
分类:
系统相关 时间:
2020-07-17 19:33:16
阅读次数:
79
#() 元组 # 元组的索引切片 # t = (1,2,3,5,6,8,9,5,67,2,3,) # print(t) print(type(t)) # <class 'tuple'> print(t[0]) print(t[3]) print(t[:3]) print(t[::3]) # tupl ...
分类:
其他好文 时间:
2020-07-17 19:21:55
阅读次数:
58
CSS数据样式 表格 定制表格 我们除了可以使用<table>标签进行绘制表格,在css3中display也支持进行表格的样式绘制。 样式规则说明 table 对应 table table-caption 对应 caption table-row 对表 tr table-cell 对于th或td t ...
分类:
Web程序 时间:
2020-07-14 13:37:41
阅读次数:
125
class Person(): def __init__(self, name): self.name = name def setName(self, name): self.name = name class Satter(Person): def __init__(self, name, co ...
分类:
编程语言 时间:
2020-07-13 21:25:58
阅读次数:
78
import java.util.regex.Matcher;import java.util.regex.Pattern; private static final Pattern AMOUNT_PATTERN = Pattern.compile("^(0|[1-9]\\d{0,11})\\.(\ ...
分类:
编程语言 时间:
2020-07-13 11:34:26
阅读次数:
64
一、环境搭建 靶机下载地址 http://vulnstack.qiyuanxuetang.net/vuln/detail/5/ 本次环境为黑盒测试,不提供虚拟机账号密码,centos 出网机 ip 为 192.168.1.110,目标是域控内的一份重要文件。 所有主机解压后都是挂起状态,配好网络环境 ...
分类:
其他好文 时间:
2020-07-12 22:34:11
阅读次数:
271
CoreFrist多个上下文 出现这个怎么解决:No DbContext was found in assembly' ShopCore'. Ensure that you' re using the correct assembly and that the type is neither abs ...
分类:
其他好文 时间:
2020-07-12 22:19:09
阅读次数:
89
单例 :单例模式确保一个类只有一个实例,并提供全局访问点,实现单例模式的方法是私有化构造函数,通过getInstance()方法实例化对象,并返回这个实例,并保证在JVM中只有一个实例 单例模式优缺点 优点 1、单例类只有一个实例,不会频繁创建对象 2、共享资源,全局使用,访问速度比较快(只有一个实 ...
分类:
其他好文 时间:
2020-07-12 17:17:47
阅读次数:
67