How To : Upgrade 11.2.0.2.0 to 12.1.0.1.0 Posted on August 22, 2015 by baironnie it’s a little bit long time since my last post. though i have some no ...
分类:
其他好文 时间:
2021-04-08 13:10:06
阅读次数:
0
Redis 中 BitMap 的使用场景 BitMap BitMap 原本的含义是用一个比特位来映射某个元素的状态。由于一个比特位只能表示 0 和 1 两种状态,所以 BitMap 能映射的状态有限,但是使用比特位的优势是能大量的节省内存空间。 在 Redis 中,可以把 Bitmaps 想象成一个 ...
分类:
其他好文 时间:
2021-04-08 13:08:56
阅读次数:
0
两道ctf的stega记录一下,之前很少碰到这种题型,都思考了一段时间才有点头绪 题目一 拖入jar,在三个图层的plane 0层都发现有白点 preview一下,先尝试了单个图层preview无果,将三个图层一起preview 调一下bit plane order,发现flag 题目二 解压后得二 ...
分类:
其他好文 时间:
2021-04-06 14:32:14
阅读次数:
0
AI基础架构Pass Infrastructure Operation Pass OperationPass : Op-Specific OperationPass : Op-Agnostic Dependent Dialects Initialization Analysis Management ...
分类:
其他好文 时间:
2021-04-06 14:20:42
阅读次数:
0
$n$ 个区间,互不相交,$m$ 条线段排好序,一条线段连接两个区间当且仅当线段的两个端点分别在两个相邻的区间内,问是否能将所有区间连通 ...
分类:
其他好文 时间:
2021-04-06 14:02:52
阅读次数:
0
报错原因:当使用union或union all时查询出的字段的排序规则不同。 解决方法: select column(列名) collate utf8_unicode_ci(排序规则)from table(表名) union/union all select column(列名) collate u ...
分类:
其他好文 时间:
2021-04-05 12:09:21
阅读次数:
0
class Sarr { public: Sarr() { memset(Bit, 0, sizeof(Bit)); } int lowbit(int pos) { return pos & (-pos); } void update(int pos, int len) { while (pos < ...
分类:
编程语言 时间:
2021-04-05 12:05:49
阅读次数:
0
今天写了一下acwing的题目,感觉自己之前对递归没有一个很好的理解,现在写了这几题就有了更好的理解了。 就我而言,递归就是一层一层的调用自己,也就是将层数减少,到最少就不能调用自己了,也就是结束了调用。 解法一: 用二进制枚举每一位。从1到2的n次方,将其转化为二进制,二进制上的第i位是1,就代表 ...
1.swagger注解和功能介绍(API接口) @Api: 类,标识这个类是swagger的资源 @ApiModel: 类,描述一个Model的信息 (一般用在请求参数无法使用@ApiImplicitParam注解进行描述的时候) @ApiOperation: 方法,一个http请求的操作 @Api ...
分类:
其他好文 时间:
2021-04-05 11:44:59
阅读次数:
0
简单的模拟 #include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; int sum=0,max_loss=0,max_index; for(int i=0;i<n;i++){ int temp_sum ...
分类:
移动开发 时间:
2021-04-02 13:12:46
阅读次数:
0