需求缘起 在上一篇文章中,我们对于Spring Security有了一个基本的了解,那么重点是在Spring Boot中如何使用Spring Security呢? 一、Spring Security初体验 这里我们通过简单的集成方式来对Spring Security有一个基本的认知。 1.1 创建项 ...
分类:
编程语言 时间:
2020-06-22 15:39:48
阅读次数:
56
LPVOID VirtualAlloc( LPVOID lpAddress, //指定内存地址,一般填NULL DWORD dwSize, //分配内存大小 0x1000为1个物理页 DWORD flAllocationType, //分配类型 MEM_COMMIT地址空间和物理页都分 MEM_RE ...
建一个正向图和反向图,(都存到一个地方,反向图的节点加 n 就好了),跑两边 Dijskra #include <bits/stdc++.h> using namespace std; const int N = 1e3 + 10,M = 1e5 + 10,INF = 0x3f3f3f3f; typ ...
分类:
其他好文 时间:
2020-06-21 19:59:55
阅读次数:
42
直接把注释写到代码中: 1 int 2 __pthread_mutex_lock (pthread_mutex_t *mutex) 3 { 4 unsigned int type = PTHREAD_MUTEX_TYPE_ELISION (mutex); 5 6 //安全检查 7 LIBC_PROB ...
分类:
其他好文 时间:
2020-06-20 21:54:01
阅读次数:
156
昨天和今天测了一下前年noip tg的题 100+80+20+60+45+0=305pts 应该是大众分了。。刚好压前年我省1=线。。 我还是太弱了/kk 提交的代码: D1T1: #include<bits/stdc++.h> #define ll long long using namespac ...
分类:
其他好文 时间:
2020-06-20 19:11:30
阅读次数:
55
整理自极客时间MySQL45讲 索引常见的模型 哈希表 是一种以键-值(key-value)存储数据的结构,我们只要输入待查找的值即key,就可以找到其对应的值即Value。哈希的思路很简单,把值放在数组里,用一个哈希函数把key换算成一个确定的位置,然后把value放在数组的这个位置。 不可避免地 ...
分类:
数据库 时间:
2020-06-20 19:00:03
阅读次数:
63
#include <iostream> #include <cstdio> #include <cstring> #include <cmath> #define N 500000 using namespace std; int n,m,S,T,tmp1,tmp2,tot; int idx,hea ...
分类:
其他好文 时间:
2020-06-20 18:52:12
阅读次数:
51
一、Memcached简介 Memcached是一款开源的、高性能的纯内存缓存服务软件 Mem是内存的意思,cache是缓存的意思,d是daemon的意思 优点: 1. 对于用户来讲,用户访问网站更快了,体验更好了。 2. 对网站来说,数据库压力降低了。只有当内存没有数据时才会去请求数据库。第一次写 ...
分类:
系统相关 时间:
2020-06-20 18:40:34
阅读次数:
55
#include <iostream> #include <cstdio> #include <cstring> #define N 100010 using namespace std; int n,m,S,T,tmp1,tmp2,tot; int idx,head[N],cur[N],q[N], ...
分类:
其他好文 时间:
2020-06-20 13:51:16
阅读次数:
33
bcolz bcolz 在使用的时候对 pandas 有要求,版本最好是 0.22.0 版本 安装 pip install -U bcolz 使用conda安装 conda install -c conda-forge bcolz bcolz 包的存储分为 ctable 和 carray 两种存储类 ...
分类:
其他好文 时间:
2020-06-20 11:42:48
阅读次数:
141