nmcli n 查看nmcli状态 nmcli n on 启动nmcli nmcli c up eth0 启动网卡eth0 nmcli c down eth0 关闭网卡eth0 nmcli d c eth0 激活网卡 nmcli d show eth0 查看网卡eth0信息 nmcli r all ...
分类:
其他好文 时间:
2019-09-26 00:50:18
阅读次数:
236
Sasha grew up and went to first grade. To celebrate this event her mother bought her a multiplication table MM with nn rows and nn columns such that M ...
分类:
其他好文 时间:
2019-09-25 20:01:49
阅读次数:
102
问题描述 Given a binary tree, return the inorder traversal of its nodes' values. (左 - 根 - 右) Example: Follow up: Recursive solution is trivial, could you ...
分类:
其他好文 时间:
2019-09-25 10:42:33
阅读次数:
71
Use: screen [-opts] [cmd [args]] or: screen -r [host.tty] Options: -4 Use IPv4. -6 Use IPv6. -a Force all capabilities into each window's termcap. -A ...
分类:
其他好文 时间:
2019-09-25 00:40:22
阅读次数:
109
in=INSERT up=UPDATE se=SELECT fr=FROM wh=WHERE or=ORDER BY de=DELETE df=DELETE FROM sf=SELECT * FROM sc=SELECT COUNT(*) FROM sfu=SELECT * FROM FOR UPD... ...
分类:
数据库 时间:
2019-09-24 14:24:45
阅读次数:
192
题面:https://www.cnblogs.com/Juve/articles/11574985.html 蔬菜: 题解说和四维偏序有关,但是看到它没有修改,可以莫队水过 一个二维莫队,定义四个指针,分别表示左上角和右下角的坐标 然后模拟序列上的莫队移动 u是up,d是down,l是left,r是 ...
分类:
其他好文 时间:
2019-09-24 11:56:15
阅读次数:
78
"题目链接" Implementation c++ int n, q; scan(n,q); vi p(n + 1); vi nson(n + 1); up (i, 1, n) { scan(p[i]); nson[p[i]]++; } vi leaf; up (i, 1, n) { if (nso ...
分类:
其他好文 时间:
2019-09-23 22:35:47
阅读次数:
124
take care of 照顾 take place 发生 take action 行动 take over 接管 take in 欺骗(某人) take up 拿起 take away 带走 take off 脱下衣服,飞机起飞。 take a chance 冒险 take account of ...
分类:
其他好文 时间:
2019-09-23 09:28:59
阅读次数:
176
? Linked List Reverse Linked List "link" Reverse a singly linked list. Example: Follow up: A linked list can be reversed either iteratively or recursi ...
分类:
其他好文 时间:
2019-09-23 09:26:28
阅读次数:
88
"本题传送门" 本题知识点:~~宽度优先搜索~~ 模拟 + map 本题题意有点懵。就是单纯的把S1像例子那样插到S2里,根本不是什么宽搜题,因为只是一个方向就可以了。说是搜索题倒是有点意思,因为要查重。 不过cin还是慢啊,一个cin就把我卡tle了。 所以最后这就是简单的模拟题,加上一个map( ...
分类:
其他好文 时间:
2019-09-22 19:32:12
阅读次数:
75