A reversible prime in any number system is a prime whose "reverse" in that number system is also a prime. For example in the decimal system 73 is a re ...
分类:
其他好文 时间:
2020-06-24 19:28:08
阅读次数:
55
max()/min()/abs()函数 swap()函数 reverse()函数 next_permutation()函数 fill()函数 sort()函数 头文件需要 #include<algorithm> using namespace std 使用方法 sort(首元素地址(必填), 尾元素 ...
分类:
其他好文 时间:
2020-06-23 21:43:03
阅读次数:
58
Collections工具类1.作用:操作Collection和Map的工具类 2.常用方法:reverse(List):反转 List 中元素的顺序shuffle(List):对 List 集合元素进行随机排序sort(List):根据元素的自然顺序对指定 List 集合元素升序排序sort(Li ...
分类:
编程语言 时间:
2020-06-23 21:01:02
阅读次数:
55
Alt+l 记录 Alt+e 可执行模块 Alt+m 内存 Alt+c cpu(反汇编视图) Ctrl+p 补丁 Alt+k 调用堆栈 Alt+b 断点 Alt+f5 设置窗口总在最前 Alt+o 调试选项 Alt+F3 - 关闭当前窗口。 Ctrl+F4 - 关闭当前窗口。 F5 - 最大化当前窗 ...
分类:
其他好文 时间:
2020-06-23 10:29:19
阅读次数:
78
拖到linux中调试 IDA中查看主函数 int __cdecl main(int argc, const char **argv, const char **envp) { int v3; // ebx int v4; // ebx __int64 v5; // rbx void *v7; // ...
分类:
其他好文 时间:
2020-06-22 23:29:57
阅读次数:
121
cc = [1,4,2,5,8,3,7,6,10,9] # print(len(cc)) # print(cc.sort()) # print(cc[0]) # print(list(reversed(cc))) # cc = "ffsdss" # print(list(reversed(sorte ...
分类:
其他好文 时间:
2020-06-22 23:29:06
阅读次数:
81
1 安装生成证书工具 1.0环境配置 Nodes 主机ip 角色 Etcd1 192.168.253.*** Master Etcd2 192.168.253.*** Node Etcd3 192.168.253.*** Node 1.1 安装三个工具分别是cfssl、cdssl-json、cfss ...
分类:
其他好文 时间:
2020-06-21 20:22:12
阅读次数:
77
1基于reverseproxy实现的反向代理例子packagemainimport("log""net/http""net/http/httputil""net/url")funcmain(){//地址重写实例//http://127.0.0.1:8888/test?id=1=》http://127.0.0.1:8081/reverse/test?id=1rs1:="http://127.0.0.
分类:
其他好文 时间:
2020-06-21 18:16:09
阅读次数:
61
题目:Folding 网址:https://onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=0&problem=4505&mosmsg=Submission+received+w ...
分类:
其他好文 时间:
2020-06-21 14:12:21
阅读次数:
55
本文主要讲解使用HttpResponseRedirect、redirect、reverse以及配置文件中配置URL等重定向方法 使用场景,例如在表单一中提交数据后,需要返回到另一个指定的页面即可使用重定向方法 一、 使用HttpResponseRedirect ● fuhao The first a ...
分类:
其他好文 时间:
2020-06-21 13:25:22
阅读次数:
57