GET _cat/templates GET /_template/* PUT _template/test1_template { "order": 0, "version": 1, "index_patterns": [ "test1-*" ], "settings": { "index": { ...
分类:
其他好文 时间:
2021-03-12 11:40:33
阅读次数:
0
按英文的字面意思就比较好理解了: 常量指针:pointer to const 字面意思:指向常量的指针 指针常量:const pointer 字面意思:指针本身是个常量 看一段代码: char hello[6] = "hello"; char world[6] = "world"; const ch ...
分类:
编程语言 时间:
2021-03-10 12:55:03
阅读次数:
0
既然我们这一节要说的是线性表与链表的内容,那么肯定要对数据结构的概念有一个认识。首先,数据结构一般分为逻辑结构、物理结构,逻辑结构指的是数据对象元素之间的相互关系,物理结构一般指的是数据的存储结构。逻辑结构主要包括集合结构、线性结构、树形结构、图形结构,物理结构主要有链式存储和线性存储。在数据结构的 ...
分类:
其他好文 时间:
2021-03-09 13:33:29
阅读次数:
0
问题 输入两个链表,找出它们的第一个公共节点。 示例 解答 class Solution { public: ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) { ListNode *curA = headA, *curB ...
分类:
其他好文 时间:
2021-03-06 14:52:36
阅读次数:
0
一、项目介绍 实现点击按钮随机出现不同人的名字,二次点击停止在某个人名字之上,三次点击继续随机出现 二、项目逻辑 随机 区分单次二次多次点击 是停止还是继续随机 三、项目实现 — 代码 style <style> #oname{width: 300px;height: 100px;border: 1 ...
分类:
其他好文 时间:
2021-03-04 13:23:19
阅读次数:
0
Should criminals be punished with lengthy jail terms or re-educated and rehabilitated, using community service programs for instance, before being rei ...
分类:
其他好文 时间:
2021-03-03 12:18:12
阅读次数:
0
1. 基础的协程 以 async def 开始声明一个函数 创建事件循环,并添加协程对象(Corountine)来执行 async def test(): # 声明一个协程函数 test asyncio.ensure_future(obj) # 将协程对象转变成 future asyncio.gat ...
分类:
编程语言 时间:
2021-03-02 11:44:41
阅读次数:
0
1、简介 无意中发现了个开源项目,推荐给大家。 韭菜盒子——VSCode 里也可以看股票 & 基金实时数据,做最好用的投资插件。 开源地址: https://github.com/LeekHub/leek-fund 投资其实就是一次心态修炼,稳住心态长期投资都会有收益的!! 2、功能特性 本插件具有 ...
分类:
其他好文 时间:
2021-02-26 13:29:58
阅读次数:
0
cmake官方文档 https://cmake.org/documentation https://cmake.org/cmake/help/v3.19/ https://cmake.org/cmake/help/latest/guide/tutorial/index.html https://cm ...
分类:
其他好文 时间:
2021-02-20 11:55:40
阅读次数:
0
``` //计算旋转角 double calculateAngle(const EigenVector3d &vectorBefore, const EigenVector3d &vectorAfter) { double ab, a1, b1, cosr; ab = vectorBefore.x( ...
分类:
其他好文 时间:
2021-02-19 13:15:43
阅读次数:
0