集群版本V1.18.2 root@k8s:~# kubectl get nodes NAME STATUS ROLES AGE VERSION k8s Ready master 20d v1.18.2 node1 Ready worker 20d v1.18.2 node2 Ready worker ...
分类:
Web程序 时间:
2021-03-17 14:01:11
阅读次数:
0
#第一周 程序设计与C语言 #include <stdio.h> int main() { printf("%d\n",12+34); return 0; } %d表示后面有一个整数要输出在这个位置上 #第二周 计算 ##2.1 变量 scanf("%d,&price"); 要求scanf()这个函 ...
分类:
编程语言 时间:
2021-03-16 13:23:53
阅读次数:
0
#include <stdio.h>#include <stdlib.h>typedef struct node { int number; struct node * next;}person;person * initLink(int n) { int i = 0; person * head ...
分类:
其他好文 时间:
2021-03-15 11:31:33
阅读次数:
0
首先引用官方文档 # Packaging VS Code can be packaged for the following platforms: win32-ia32 | win32-x64 | darwin | linux-ia32 | linux-x64 | linux-arm These g ...
分类:
其他好文 时间:
2021-03-15 10:47:18
阅读次数:
0
Description Link. 给定一棵 \(n\) 个点的树,设 \(E\) 为边集,\(V'_x,\ V'_y\) 分别为删去边 \((x,y)\) 后 点 \(x\) 所在的树的点集和点 \(y\) 所在的树的点集,求: \[ \sum_{(u,v)\in E}(\sum_{x\in V' ...
分类:
其他好文 时间:
2021-03-10 12:54:10
阅读次数:
0
1. Grid: by default showing content in Y axis (column), Flex: by default showing content in X axis. Exp: If you want to style a header.. you can use f ...
分类:
Web程序 时间:
2021-03-09 13:32:34
阅读次数:
0
Integer.toHexString() 将数字转化为16进制表示 例: 170->aa; Scanner类 字符串输入--s.next()、s.nextLine()方法 next()方法读取到空白符就结束;nextLine()读取到回车结束也就是“\r” 输入有多组数据,没有说明输入几组数据,每 ...
分类:
其他好文 时间:
2021-03-09 13:27:59
阅读次数:
0
Remove Palindromic Subsequences (E) 题目 Given a string s consisting only of letters 'a' and 'b'. In a single step you can remove one palindromic subseq ...
分类:
其他好文 时间:
2021-03-09 13:26:40
阅读次数:
0
设备有水平、竖直两条总线,一般情况下,开不了门是总线通信故障导致的。于是先测试总线连接情况,设备总共有A >B >C >D >E接线口,经过测量A >E是通的;两端各有一个120欧姆电阻,测得总线电阻是55欧姆,也可说明总线是通的。按理说这是能开门的,但是没有开,诧异诧异!后来将总线上的设备去掉一半 ...
分类:
其他好文 时间:
2021-03-09 13:26:20
阅读次数:
0
LG2147 [SDOI2008]洞穴勘测 这个题第一眼是线段树分治吧。 但是这个题和大部分板子不同的是,这里询问不是全图连通性了,是两点的连通性。其实思路没什么大区别,还是要用可撤销并查集维护连通性,把边挂到线段树上相应的时间点上。 只是我们现在的询问不同了,我们可以模仿把边挂在线段树上的方式,把 ...
分类:
其他好文 时间:
2021-03-08 13:37:41
阅读次数:
0