import numpy as np import pandas as pd #1.聚合一次 df=pd.DataFrame({"age":[18,20,22,22,23,23], "name":["A","B","C","D","E","F"], "price1":[1000,900,800,70 ...
分类:
其他好文 时间:
2020-03-09 13:36:24
阅读次数:
61
今天听了 20176 一的真题四级听力第一题。谷歌的无人驾驶汽车 。 california n 加利福尼亚 famed adj 著名的 vehicle n 交通工具 assumed v 假设 manual adj 手动 mode n 方式 merge v 融合 sufficient adj足够的 s ...
分类:
其他好文 时间:
2020-03-09 00:50:23
阅读次数:
90
本题要求实现一个函数,将两个链表表示的递增整数序列合并为一个非递减的整数序列。 函数接口定义: List Merge( List L1, List L2 ); 其中List结构定义如下: typedef struct Node *PtrToNode; struct Node { ElementTyp ...
分类:
其他好文 时间:
2020-03-09 00:42:00
阅读次数:
64
云端新增加了一个文件,本地只有一个2.text 将云端pull到本地: (base) localhost:Merge_Conflict ligaijiang$ git log #查看git日志 commit f169235a4423fe33c690949937136bc2b0abf26b (HEAD ...
分类:
系统相关 时间:
2020-03-07 21:20:41
阅读次数:
104
新建一个名称为git_intro的仓库,需要用下下图标记的链接 进行push操作: (base) localhost:Merge_Conflict ligaijiang$ git remote -v (base) localhost:Merge_Conflict ligaijiang$ git re ...
分类:
系统相关 时间:
2020-03-07 21:06:48
阅读次数:
102
[LeetCode]632. Smallest Range Covering Elements from K Lists 你有 k 个升序排列的整数数组。找到一个最小区间,使得 k 个列表中的每个列表至少有一个数包含在其中。 我们定义如果 b-a < d-c 或者在 b-a == d-c 时 a < ...
分类:
其他好文 时间:
2020-03-06 23:40:33
阅读次数:
69
转自 https://blog.csdn.net/qq_34231010/article/details/82530368 一、集合工具1.Lists List<Integer> list1 = Lists.newArrayList(0, 2, 5);List<Integer> list2 = Li ...
分类:
其他好文 时间:
2020-03-06 17:28:10
阅读次数:
75
OpenSSH 7.7前存在一个用户名枚举漏洞,通过该漏洞,攻击者可以判断某个用户名是否存在于目标主机中。 参考链接: http://openwall.com/lists/oss-security/2018/08/15/5https://github.com/Rhynorater/CVE-2018- ...
分类:
其他好文 时间:
2020-03-06 15:05:17
阅读次数:
276
Splay 1 #include <cstdio> 2 #include <iostream> 3 using namespace std; 4 const int maxn=1e5+5,inf=0x3f3f3f3f; 5 int siz[maxn],fa[maxn],ch[maxn][2],rep ...
分类:
其他好文 时间:
2020-03-05 21:00:30
阅读次数:
100
一、 Prometheus与服务发现 1.1 目前支持的服务发现方式 二、 案例 2.1 基于文件的服务发现 2.2 基于Consul的服务发现 三、本地测试 3.1 基于文件的服务发现 1.测试环境 2.配置文件 3.可视化 3.2 prometheus.yml热加载 一、 Prometheus与 ...
分类:
其他好文 时间:
2020-03-04 19:36:21
阅读次数:
126