QtCharts画线图主要三个部分组成 QLIneSeries或QSplineSeries用于保存联系的坐标位置数据,QChart用于管理图像显示,例如图例,坐标主题等,QChartView则用于显示。 上代码 #ifndef WIDGET_H #define WIDGET_H #define SP ...
分类:
其他好文 时间:
2019-12-25 10:22:27
阅读次数:
94
https://github.com/luyishisi/Anti-Anti-Spider https://github.com/uknowsec/SharpToolsAggressor https://github.com/0xFA-Team/CVE-2019-0604 https://githu ...
分类:
其他好文 时间:
2019-12-24 20:42:46
阅读次数:
96
题目:https://nanti.jisuanke.com/t/41399 思路:差分数组 区间内操作次数为奇数次则灯为打开状态 #include<bits/stdc++.h> using namespace std; map<int,int>mp; int main() { int T; scan ...
分类:
其他好文 时间:
2019-12-24 13:36:45
阅读次数:
69
细说Spark Streaming和Structured Streaming的区别 ...
分类:
其他好文 时间:
2019-12-22 14:55:01
阅读次数:
83
1.基本用法apiVersion:v1kind:Pod#创建的资源类型可以是,Deployment、Job、Ingress、Service等metadata:#包含Pod的一些meta信息,比如名称、namespace、标签等信息name:ng1#Podnamelabels:#标签app:webspec:containers:-name:ng1#容器nameimage:hub.c.163.com/
分类:
Web程序 时间:
2019-12-18 09:31:33
阅读次数:
122
#!/usr/bin/python # -*- coding: UTF-8 -*- # @Time : 2019/12/5 17:30 # @Author : shenghao/10347899@qq.com '''test with selenium's move''' from selenium... ...
分类:
编程语言 时间:
2019-12-09 11:37:52
阅读次数:
92
SpringBoot简介 Spring Boot 是所有基于 Spring 开发的项目的起点。Spring Boot 的设计是为了让你尽可能快的跑起来 Spring 应用程序并且尽可能减少你的配置文件。简单来说就是SpringBoot其实不是什么新的框架,它默认配置了很多框架的使用方式,就像mave ...
分类:
编程语言 时间:
2019-12-07 14:51:05
阅读次数:
600
COMP518 Assignment 3 (of 3)The submission of your solutions should be in PDF or DOC format. The MySQL commands in questions 1 and 2 should be submitt ...
分类:
其他好文 时间:
2019-12-03 19:40:17
阅读次数:
79
题目链接:https://vjudge.net/contest/344930#problem/F 题目大意:给你n个字符串,让你求给定的两个串的最长公共前缀 题目思路:处理所给的n个字符串的Hash值,然后对于每次给定的两个串,二分长度就可以了。 值得注意的是这道题需要利用vector进行存储 1 ...
分类:
其他好文 时间:
2019-11-29 00:50:54
阅读次数:
92
1.Python多进程模块 Python中的多进程是通过multiprocessing包来实现的,和多线程的threading.Thread差不多,它可以利用multiprocessing.Process对象来创建一个进程对象。这个进程对象的方法和线程对象的方法差不多也有start(), run() ...
分类:
编程语言 时间:
2019-11-28 23:13:43
阅读次数:
76