海马体 存储的数据,存储中心由无数个存储单元组成,一个存储单元由两个存储节点组成,当一个新的事件需要存储时,就会有一个存储单元的两个节点自动连在一起完成,相当于两只手握在了一起,这样一个存储中心就会出现五条连接的线,一条存储画面,一条存储声音,一条存储环境(用于确定时间),一条存储感情(是高兴、悲伤 ...
分类:
其他好文 时间:
2020-05-05 15:13:45
阅读次数:
105
如果我们编写了一个函数,函数内部可能会出现异常,但是我们不想在这个函数内处理,而是想要通知调用者,那么C++允许它重抛出这个异常。语法如下: try { //Execute some code } catch (Exception& e) { //Peform some operations bef ...
分类:
编程语言 时间:
2020-05-05 11:06:03
阅读次数:
62
Some of the most devastating things that happen to you will teach you the most. 有些最打击你的事情反而教会你的东西越多。 重装原有SSH 先解释一下WSL的网络,作为子系统的Ubuntu Linux和Windows主系统 ...
分类:
其他好文 时间:
2020-05-05 00:35:35
阅读次数:
208
参考: [1] uthash | 学步园 [2] 源码 [3] 官方文档 [4] [5] 一、哈希表的概念及作用 在一般的线性表或者树中,我们所储存的值写它的存储位置的关系是随机的。因此,在查找过程中,需要一系列的与关键字的比较。算法的时间复杂度与比较的次数有关。线性表查找的时间复杂度为O(n)而平 ...
分类:
其他好文 时间:
2020-05-04 19:25:52
阅读次数:
45
from re import sub def camel(s): print(s) # some_database_field_name # Some label that needs to be camelized # some-javascript-property # some-mixed_s ...
分类:
其他好文 时间:
2020-05-03 14:45:22
阅读次数:
68
Given a non-empty binary tree, find the maximum path sum. For this problem, a path is defined as any sequence of nodes from some starting node to any ...
分类:
其他好文 时间:
2020-05-03 14:27:36
阅读次数:
67
# -*- coding: utf-8 -*- """ requests.api ~~~~~~~~~~~~ This module implements the Requests API. :copyright: (c) 2012 by Kenneth Reitz. :license: Apache ...
分类:
其他好文 时间:
2020-05-02 21:03:57
阅读次数:
57
In a sequence of numbers,we can find some number pairs that conform to the rule below: Assuming that there exist two numbers,N and M and it's position ...
分类:
其他好文 时间:
2020-05-02 18:46:09
阅读次数:
60
When shipping goods with containers, we have to be careful not to pack some incompatible goods into the same container, or we might get ourselves in s ...
分类:
其他好文 时间:
2020-05-02 15:12:33
阅读次数:
56
项目背景 企业应用中越来越多的会使用容器技术来是实现解决方案 1、单节点的docker和docker compose 2、多节点的docker swarm集群 3、多节点的k8s集群 以上都是可以基于容器技术实现企业应用的编排和快速部署 在特别大型的业务架构中, 数据达到T级别,P级别,甚至E级别或 ...
分类:
其他好文 时间:
2020-05-02 15:00:28
阅读次数:
159