CPU进程: DFWD: 查看占用cpu高的进程,发现DFWD的进程达到了90%以上,dfwd进程是数据转发的进程,该进程造成的cpu占用率高的话说明现在设备性能已经达到了极限,这种情况在低端防火墙USG2100上比较明显,建议更换更高性能的设备。 ...
分类:
系统相关 时间:
2019-02-24 10:37:44
阅读次数:
323
Ray in the tube 感觉是套路题。。 如果确定一个差值x我们如何取确定答案呢, 我们把a[ i ] -> a[ i ] % (2 * x), 把b[ i ] -> (b[ i ] + k) % (2 * x), 值相同的都能同时射到。 同时我们能发现, 对于一个差值x如果它有奇数因子, ...
分类:
其他好文 时间:
2019-02-24 10:37:31
阅读次数:
178
数值运行操作符 操作符是完成运算的一种符号体系 ...
分类:
其他好文 时间:
2019-02-24 10:37:16
阅读次数:
118
```C++ include include using namespace std; const int INF = 1000000000; //初始化最低油价 struct station{ double oil_price; //加油站油价 int distance; //加油站离出发点的距离 ...
分类:
其他好文 时间:
2019-02-24 10:36:44
阅读次数:
182
二进制中1的个数 题目描述 输入一个整数,输出该数二进制表示中1的个数。其中负数用补码表示。 class Solution { public: int NumberOf1(int n) { int res = 0; int bit = 1; while (0 != bit) { if (n & bi ...
分类:
其他好文 时间:
2019-02-24 10:36:22
阅读次数:
155
前提: " Webpack 4 学习01(基础配置)" ? "Webpack 4 学习02(通过配置文件打包)" 一、了解 webpack dev server 用来配置本地服务器 为 打包生成的文件提供web服务 自动刷新和热替换(HMR) 二、安装webpack dev server 三、 配置 ...
分类:
Web程序 时间:
2019-02-24 10:36:04
阅读次数:
152
```C++ include include include include using namespace std; const int MAXN = 40010; const int MAXC = 2510; vector Courses[MAXC]; char StuName[MAXN][5] ...
分类:
其他好文 时间:
2019-02-24 10:35:46
阅读次数:
165
```C++ #include #include #include using namespace std; const int maxn = 30010; struct Student{ char id[15]; int score; int local_number; int local_ran... ...
分类:
其他好文 时间:
2019-02-24 10:35:34
阅读次数:
132
最近事不多,准备做一个app的应用,关于辅助学习雅思短文的,思路是:以短文为所有学习的核心,短文取材于各年雅思真题、练习题等,客户也可以维护自己看到的文章,不会的单词予以标注,系统并不会直接给出正确解释,而是空出来让客户自己猜,当客户对这个词已经了解、已经知道含义的情况下,再进行释义,系统按时间分阶 ...
分类:
其他好文 时间:
2019-02-24 10:35:14
阅读次数:
187
# -*- coding: utf-8 -*- # data:2019-02-23 20:05 # user:DIY # file:agent_eay.py import socket def work(i): sock = socket.socket(socket.AF_INET,socket.S... ...
分类:
其他好文 时间:
2019-02-24 10:34:56
阅读次数:
186
[TOC] Codeforces 1131 "比赛链接" hack一个暴力失败了两次最后还是没成功身败名裂= = CF跑的也太快了吧... 不过倒也涨了不少。 A.Sea Battle cpp //想麻烦了,但是无所谓... include include include include inclu ...
分类:
其他好文 时间:
2019-02-24 10:34:24
阅读次数:
141
直接看表,描述很清晰 字符 转义字符 备注 & (ampersand) & 这个没什么特别的,几乎所有的地方都需要使用转义字符 > (greater than character) > 在属性(Attribute values)中必须进行转义,在内容(Co ...
```C++ include include using namespace std; const int MAXN = 100010; int a[MAXN]; //存放各个数字当前所处的位置编号 int main(){ int n, num, ans = 0;//表示总计交换次数 scanf(" ...
分类:
其他好文 时间:
2019-02-24 10:33:57
阅读次数:
184
Arduino IDE是最难用又最好用的单片机IDE,没有之一!难用之处在于没有自动补全(这一点最是难受,但又最是无处说理),库文档也常常不全,时不时就要开Source Insight看看库文件的源代码,很是麻烦;好用之处则在于库管理和开发板管理极为方便,调用某个库的时候需要#include的头文件 ...
分类:
其他好文 时间:
2019-02-24 10:33:39
阅读次数:
229
1027 Colors in Mars (20 分) People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represente ...
分类:
其他好文 时间:
2019-02-24 10:33:24
阅读次数:
161
#include <stdlib.h> <stdio.h> system(""); 命令 调用系统的指令 C 基本数据类型 没有boolean 没有byte c Char类型 1字节 long类型 4字节 多了一个signed unsigned 有符号无符号 用来修饰整型变量 加上unsigned之 ...
分类:
其他好文 时间:
2019-02-24 10:33:05
阅读次数:
172
上一讲中我们打包没有用到 配置文件,webpack4把自己定位为一个零配置的工具。这一讲学习配置文件使用,更好地学习webpack。 "上一讲 Webpack 4 学习01(基础配置)" 根目录下新建一个 文件 (记载配置信息) 配置文件 | 字段 | 意义 | | | | | entry | 入口 ...
分类:
Web程序 时间:
2019-02-24 10:32:47
阅读次数:
194