排序贪心
区间贪心
删数贪心
统计二进制下有多少1
int Getbit_1(int n){int cnt0;while(n){nn&(n-1);cnt;}return cnt;
}暴力加一维前缀和优化
#include <iostream>
#include <climits>
using namespace std;
#define int long long
const int N2e510;
in…
如何在k8s的任意节点使用用kubectl
# 正常在node节点上是无法执行kubectl命令
[rootk8s-node-01 ~]# kubectl get pods
The connection to the server localhost:8080 was refused - did you specify the right host or port?1、将master节点中/etc/kubernetes/,admin.conf拷…