区块链(Blockchain),是比特币的一个重要概念,它本质上是一个去中心化的数据库,同时作为比特币的底层技术,是一串使用密码学方法相关联产生的数据块,每一个数据块中包含了一批次比特币网络交易的信息,用于验证其信息的有效性(防伪)和生成下一个区块。(百度百科) 区块链本身的结构是非常简单的,其复杂... ...
分类:
其他好文 时间:
2019-03-29 14:54:46
阅读次数:
204
SpringBoot具体整合ActiveMQ可参考: "SpringBoot2.0应用(二):SpringBoot2.0整合ActiveMQ" ActiveMQ自动注入 当项目中存在 和`org.springframework.jms.core.JmsTemplate JmsAutoConfigur ...
分类:
编程语言 时间:
2019-03-28 20:37:24
阅读次数:
196
Write a program to find the node at which the intersection of two singly linked lists begins. For example, the following two linked lists: begin to in ...
分类:
其他好文 时间:
2019-03-28 09:51:14
阅读次数:
118
问题描述 将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 示例: 解决方案 python encoding: utf 8 class Node(object): def __init__(self): self.val = None self.next ...
分类:
其他好文 时间:
2019-03-28 00:44:17
阅读次数:
178
1.从master拉一个新的release分支 例如:release***2.将feature/***分支或者hotfix/***分支合并到release***分支3.发布之前问一下群里,有没有其他人当天也发布代码(协调好时间顺序,务必上一个release***代码合并master后,再发布下一个) ...
分类:
其他好文 时间:
2019-03-27 17:07:58
阅读次数:
180
合并两个字典得到: 方法1: 方法2: 方法 2 等同于: 或者 方法 2 比方法 1 速度快很多, 可以用 IPython 测试效率 来源于:https://blog.csdn.net/u010649766/article/details/78661714 ...
分类:
编程语言 时间:
2019-03-27 12:51:51
阅读次数:
178
HTML中 <ul class="lists"> <li class="list-item" v-for="(item,index) in rank" :key="index"> <span class="name"> <i v-if="index < 3" class="icon" :class= ...
分类:
其他好文 时间:
2019-03-27 11:00:47
阅读次数:
176
学了一下,好像明白了(背下来了) 不想写main函数了 PS:这个比treap好写(私以为) ...
分类:
其他好文 时间:
2019-03-26 16:47:05
阅读次数:
162
下拉仓库 git clone ""建立本地分支 git checkout -b "分支名字" 修改代码以后切换到主分支 git checkout master更新代码 git pull切换到本地分支 git checkout "分支名字"合并分支 git merge master 提交代码git a ...
分类:
其他好文 时间:
2019-03-26 13:33:39
阅读次数:
163
这类问题的出现说明程序在编译时,CMakeLists.txt 文件没有找到OpenNI.so, 即 Pangolin库未安装或破损。 重新安装pangolin库即可。(亲测) ...
分类:
其他好文 时间:
2019-03-26 10:29:53
阅读次数:
492