{{define"test.html"}}{{-ifgt(len.Alerts.Firing)0-}}@告警<tableborder="5"><tr><td>报警项</td><td>实例</td><td>报警详情</td><td>报警阀值</td
分类:
其他好文 时间:
2020-12-11 12:20:16
阅读次数:
5
Description A frightful matrix is a square matrix of order n where the first row and the first column are explicitly specified, while the other elemen ...
分类:
其他好文 时间:
2020-12-11 11:54:24
阅读次数:
4
L2-1 简单计算器 (25分) 这个题会用栈就能做出来了。按题目要求写就行,比赛没做全对。 #include<bits/stdc++.h>#define ll long longusing namespace std;int main(){ stack<int>s1; stack<char>s2; ...
分类:
其他好文 时间:
2020-12-11 11:38:53
阅读次数:
2
2020-12-0611:43:13 问题描述: 编写一个程序,采用迪杰斯特拉算法,输出下图所示的有向带权图G中顶点0到达其他各个顶点的最短路径长度和最短路径。 1 #include <stdio.h> 2 #define MAXV 100 //最大顶点个数 3 #define INF 32767 ...
分类:
编程语言 时间:
2020-12-10 11:14:38
阅读次数:
5
Codeforces Round #688 (Div. 2) C 大意 略... 思维 艹,比赛时假了一个 \(\Theta(n^4)\) 做法,以为是 \(\Theta(n^2)\) ,调到天荒地老。 有 \(n^2\) 个点,我们需要 \(\Theta(n^2)\) 做法。 假设当前枚举到的点 ...
分类:
其他好文 时间:
2020-12-10 11:12:54
阅读次数:
4
// ResourceManager.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <Windows.h> #include <atlconv.h> #define LANGUAGEID 1033 char deadCode[] = "0x ...
分类:
编程语言 时间:
2020-12-10 10:50:22
阅读次数:
5
【资源下载】下载地址如下:https://docs.qq.com/doc/DTlRSd01BZXNpRUxl ? #include<reg52.h> #include<intrins.h> #define uchar unsigned char #define uint unsigned int / ...
分类:
其他好文 时间:
2020-12-09 12:08:37
阅读次数:
5
树状数组 lowbit : 求最低位的 $1$ 以及后面的 $0$ 所组成的十进制数 #include<iostream> #include<cstdio> #include<cstring> #include<math.h> #include<algorithm> #define ll long ...
分类:
编程语言 时间:
2020-12-09 12:01:36
阅读次数:
14
静态库的创建和使用 1>.命名规则 lib+库的名字+.a 例子:libmytest.a 2>.制作步骤 a.生成对应的.o文件【.c --> .o】 b.将生成的.a文件打包 ar rcs + 静态库的名字【libmytest.a】 + 生成的所有的.o 3>.发布和使用静态库 a.发布静态库 b ...
分类:
其他好文 时间:
2020-12-09 11:57:59
阅读次数:
5
call,apply简介 首先介绍下call和apply两个方法,这两个方法都是挂载在函数的原型上的,所以所有的函数都可以调用这两个方法。 注意:call()方法的作用和 apply() 方法类似,区别就是call()方法接受的是参数列表,而apply()方法接受的是一个参数数组。 例子: func ...
分类:
移动开发 时间:
2020-12-08 13:02:42
阅读次数:
20