资源:https://www.jianshu.com/p/7b6e575fd451 1 简介 rabbitmq-management是RabbitMq web管理端,用的是erlang的cowboy框架进行开发。web页面包括Overview(概述)、Connections(连接)、Channels ...
分类:
Web程序 时间:
2020-05-10 10:43:13
阅读次数:
80
debug模式下会做非常多安全性的工作,所以我们改成release模式下去运行,查看效率,结果如图 多次运行结果一致。 ...
分类:
其他好文 时间:
2020-05-09 22:59:24
阅读次数:
90
又是一道2-SAT裸题(读题比想题久/kk) /* m: 0 (i + 0 * n) h: 1 (i + 1 * n) */ #include <iostream> #include <cstdio> #include <cstring> using namespace std; const int ...
分类:
Web程序 时间:
2020-05-09 22:55:23
阅读次数:
62
一套有趣的题目 1. 1,2,3…n 以此进栈,求有多少种可能的出栈序列。 2. 由n对括号形成的合法的括号序列有多少个。 1. N(n,n)这条直线的路径方案数 eg2:设f[i]表示i对括号的方案数,那么有:$f[n]=\sum\limits_{i=0}^{n 1}f[i] f[n i 1]$ ...
分类:
其他好文 时间:
2020-05-09 21:25:20
阅读次数:
63
AC代码: #include<bits/stdc++.h> #define ll long long #define endl '\n' #define mem(a,b) memset(a,b,sizeof(a)) #define IO ios::sync_with_stdio(false);cin ...
分类:
其他好文 时间:
2020-05-09 21:06:35
阅读次数:
60
1、回顾一下有关List的几个知识点。 点1: 注意理解 Capacity 与 Count 的不同之处。 点2: 执行 TrimExcess() 方法可将容量设置为 List 中元素的实际数目。 点3: List的 Capacity (注意理解与 Count 的不同之处)扩充是以 4 的倍数来扩充的 ...
题目: 解答: 1 class Solution { 2 public: 3 bool isMatch(string s, string p) 4 { 5 s=" "+s;//防止该案例:""\n"c*" 6 p=" "+p; 7 8 int m = s.size(); 9 int n = p.si ...
分类:
其他好文 时间:
2020-05-09 14:19:42
阅读次数:
61
交换空间太小,使用dd的方式扩展2G空间。 ubuntu@ubuntu-42:/usr/local/tomcat$ free -h total used free shared buff/cache available Mem: 7.6G 6.0G 855M 13M 765M 1.3G Swap: ...
分类:
其他好文 时间:
2020-05-09 00:43:48
阅读次数:
63
S - Digit Sum 原题链接:https://atcoder.jp/contests/dp/tasks/dp_s 题目大意: 给一个n,求从1到n的数中,所有位上的数字之和能被m整除的个数。 解题思路: 数位$dp$,建一个三维数组,$dp[i][j][k]$,其中,$i$代表第几位,j代表 ...
分类:
其他好文 时间:
2020-05-08 20:02:36
阅读次数:
87
Redis 集合(Set) Redis 的 Set 是 String 类型的无序集合。集合成员是唯一的,这就意味着集合中不能出现重复的数据。 Redis 中集合是通过哈希表实现的,所以添加,删除,查找的复杂度都是 O(1)。 集合中最大的成员数为 232 - 1 (4294967295, 每个集合可 ...
分类:
其他好文 时间:
2020-05-08 19:56:57
阅读次数:
71