一、简介 FineReport 图表分为内置图表、扩展图表、第三方插件图表共三大类。 1.1 图表制作流程 二、图表制作 2.1 单元格元素图表 2.1.1 达到的效果 左上角为所有销售员的产品销量统计表。 右上角为每个地区下销售员的销量柱形统计图。 下方为所有销售员的销量饼状统计图 2.1.2 表 ...
分类:
其他好文 时间:
2020-10-07 21:27:05
阅读次数:
41
// // Created by liu on 2020/10/7. // #include <stdint.h> #include <stdlib.h> #include <string.h> #include <stdio.h>struct Node { int id; int *data; } ...
分类:
其他好文 时间:
2020-10-07 21:19:07
阅读次数:
30
js怎么截取两个中括号中间的值,微秒有时两位有时三位,正则表达式也可以 [00:02.02],[00:02.342],[00:03.2],[00:03.42],[00:04.02],[00:05.342] <body> <p id="demo"></p> <script> function getS ...
分类:
Web程序 时间:
2020-10-07 20:47:40
阅读次数:
51
浙江大学数据结构:01-复杂度2 Maximum Subsequence Sum (25分) Given a sequence of K integers { N?1??, N?2??, ..., N?K?? }. A continuous subsequence is defined to be ...
分类:
其他好文 时间:
2020-10-07 20:34:58
阅读次数:
26
只需考虑每次加入后答案的增量,即增加的子串的答案。 发现有贡献的子串为 \(\text{border}\),那么每次就只需维护 \(\text{border}\) 集合的变化。若子串 \([1,pos]\) 为子串 \([1,i]\) 的一个 \(\text{border}\),则 \(s_{pos ...
分类:
其他好文 时间:
2020-10-06 21:16:44
阅读次数:
41
noncopyable.h #ifndef __WD_NONCOPYABLE_H__ #define __WD_NONCOPYABLE_H__ namespace wd { class Noncopyable { protected: Noncopyable(){} ~Noncopyable(){} ...
分类:
编程语言 时间:
2020-10-06 20:12:15
阅读次数:
20
高精度阶乘 #include<iostream> #include<cstring> #include<cstdio> #include<string> #include<queue> #include<stack> #include<algorithm> #include<vector> #inc ...
分类:
其他好文 时间:
2020-09-21 11:51:39
阅读次数:
30
桥接模式 定义: “Represent an operation to be performed on the elements of an object structure. Visitor lets you define a new operation without changing the ...
分类:
编程语言 时间:
2020-09-18 17:19:54
阅读次数:
50
可以学习到什么? 0. spring整体脉络 1. 描述BeanFactory 2. BeanFactory和ApplicationContext的区别 3. 简述SpringIoC的加载过程 4. 简述Bean的生命周期 5. Spring中有哪些扩展接口及调用机制 一. spring源码整体脉络 ...
分类:
编程语言 时间:
2020-09-18 02:40:13
阅读次数:
35