先进先出 import queue q =queue.Queue() #FIFO q.put(12) q.put('hello') q.put({"name":"yuan"}) print(q.qsize()) print(q.full()) print(q.empty()) while True: ...
分类:
编程语言 时间:
2020-02-28 14:00:58
阅读次数:
55
1.查看python有哪些版本使用命令 whereis python 如图: 2.这么多版本如何切换呢 使用 sudo update-alternatives --install <link> <name> <path> <priority> link:指向/etc/alternatives/<na ...
分类:
编程语言 时间:
2020-02-28 00:52:37
阅读次数:
100
[Solution] Update firewall policy 1) Disabled docker rules of iptables docker will create rules of iptables automatically. # vim /etc/docker/daemon.js ...
分类:
其他好文 时间:
2020-02-27 18:57:17
阅读次数:
113
首先打开Eclipse,新建Java Project,命名为src(即我们要上传到仓库的根目录)。 注意这里我们勾选"Use project......"这一项,来把我们新建的src文件设为根目录。 之后将下发P2文件中,除rules,turtle和bin三个文件之外的文件,全部复制到src文件中, ...
分类:
系统相关 时间:
2020-02-26 21:10:38
阅读次数:
93
http://47.95.147.191/contest/6/problem/A这个题气其实是比较巧妙的。如果选了第3个,就不能选2,4。假设3是最大的,如果选2必选4,选2了却不选4那么不如选3.如果最优解是选2,4,但是贪心的时候选了3,怎么弥补呢?把a[3]=a[2]+a[4]-a[3]再放到 ...
分类:
Web程序 时间:
2020-02-26 20:58:39
阅读次数:
98
Suppose a bank has N windows open for service. There is a yellow line in front of the windows which devides the waiting area into two parts. The rules ...
分类:
其他好文 时间:
2020-02-26 18:40:18
阅读次数:
62
一、简介 依赖注入可以通过初始化方法(或构造函数)传递所需要的参数,或者通过属性(setter)传递。这里将对这两种方法进行讲解。 初始化方法注入: 属性注入: 一般更趋向于初始化注入,如果在初始化(构造函数)的时候没办法进行注入,才通过属性进行注入。在通过初始化注入的情况下,这些依赖可能仍然需要作 ...
分类:
其他好文 时间:
2020-02-26 01:24:49
阅读次数:
47
题目链接:http://codeforces.com/contest/1311/problem/D 题意:有三个数a,b,c,且a<=b<=c。你每次可以选择一个数加1或减1,但不能变为非正数。要求尽可能少的操作完后,使得b%a=0,c%b=0。输出最少操作数,并输出最后的a,b,c。 思路:枚举第 ...
分类:
其他好文 时间:
2020-02-25 23:12:21
阅读次数:
56
1 struct node{ 2 int a; 3 int cost; 4 node(int a, int cost):a(a), cost(cost){} 5 friend bool operator n2.cost; 7 } 8 }; 9 priority_queue q; ...
分类:
其他好文 时间:
2020-02-25 09:46:33
阅读次数:
73
1. 浏览器输入地址:http://pszx.nng.hnw.cn/DXC/index.jsp 2. 使用fiddler,选择Rules->Automatic Breakpoints->Before Request 3. 输入账号…和密码…,点登录,请求会被fiddler截取 4. 在fiddler ...
分类:
其他好文 时间:
2020-02-24 10:13:08
阅读次数:
190