#include<bits/stdc++.h>#define ll long long#define speed_up ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);using namespace std;const ll nl=1e18;/* ...
分类:
其他好文 时间:
2020-06-04 19:38:52
阅读次数:
55
1. 比较有用的资料 https://www.jianshu.com/p/529c3729f357 2. H264 帧查找 1. stsz/stz2 这个保有所有帧的的列表,当然包含个数 2. stss 这是关键帧列表 3. 还原 帧 --> chunk 的之间的映射(stsc),并用 stco 知 ...
分类:
其他好文 时间:
2020-06-04 13:37:16
阅读次数:
142
题目链接:https://ac.nowcoder.com/acm/problem/13947 题目大意:有n个队伍参加三场比赛,如果队伍x有一场比赛赢了队伍y,y也有一场比赛赢了x,就算一组,求有多少组。 思路:这里我用了树状数组求逆序对的方法,先对第一场比赛进行排序,然后求第二场和第三场的逆序对, ...
分类:
编程语言 时间:
2020-06-04 13:32:15
阅读次数:
60
#include<iostream> #include<cstdio> #include<algorithm> #include<queue> #include<iomanip> #include<cstring> using namespace std; typedef long long ll; ...
分类:
其他好文 时间:
2020-06-04 01:12:55
阅读次数:
61
在64位的机器上,intptr_t和uintptr_t分别是long int、unsigned long int的别名;在32位的机器上,intptr_t和uintptr_t分别是int、unsigned int的别名。 /* Types for `void *' pointers. */ #if ...
分类:
其他好文 时间:
2020-06-03 23:35:30
阅读次数:
162
servlet: 1 @WebServlet("/login.do") 2 public class AjaxLoginServlet extends HttpServlet { 3 private static final long serialVersionUID = 1L; 4 5 prote ...
分类:
Web程序 时间:
2020-06-03 21:58:21
阅读次数:
78
转自:https://www.cnblogs.com/mh-study/p/7792251.html Java时间格式转换大全 import java.text.*; import java.util.Calendar; public class VeDate { /** * 获取现在时间 * * ...
分类:
其他好文 时间:
2020-06-03 20:08:04
阅读次数:
54
Mybatis二级缓存是多个SqlSession共享的,其作用域是mapper的同一个namespace(SqlSessionFactory), 不同的sqlSession两次执行相同namespace下的sql语句且向sql中传递参数也相同即最终执行相同的sql语句, 第一次执行完毕会将数据库中查 ...
分类:
其他好文 时间:
2020-06-03 20:00:54
阅读次数:
82
Ververica was founded by the original creators of Apache Flink®, and we’ve spent a long time solving problems in the stream processing space. In this ...
分类:
其他好文 时间:
2020-06-03 17:30:51
阅读次数:
66
1.安装 githttps://www.cnblogs.com/wulixia/p/11016684.html 2.安装 gitlabhttps://www.cnblogs.com/yanjieli/p/10605381.html 3.jenkins 安装https://www.cnblogs.co ...
分类:
其他好文 时间:
2020-06-03 16:04:29
阅读次数:
75