区块存储 区块(Block)是以太坊的核心数据结构之一,Block包含Header和Body两部分。区块的存储是由leveldb完成的,leveldb的数据是以键值对存储的。 // Header represents a block header in the Ethereum blockchain ...
分类:
其他好文 时间:
2018-03-27 16:37:05
阅读次数:
1988
A monad is created by defining a type constructor M and two operations, bind and return (where return is often also called unit): The unary return ope ...
分类:
其他好文 时间:
2018-03-27 14:27:22
阅读次数:
168
DFS recursive: since this is called tail recursion, you are recommended to do it in interative: time: O(n) space: O(1) Interative: ...
分类:
其他好文 时间:
2018-03-27 10:23:32
阅读次数:
179
动态规划的题型中要抽象出递归相类似的表达式。动态规划,给我的感觉就是一个存表和查表操作,而且这两个操作在物理和逻辑上是连续的。 Nowadays, a kind of chess game called “Super Jumping! Jumping! Jumping!” is very popul ...
分类:
其他好文 时间:
2018-03-25 15:59:59
阅读次数:
232
考虑如下代码: S(1)构造了一次,是个无名的临时对象(暂且给它取名为tmp),然后传递给fun函数,s是另一个局部对象。因此程序应打印两次~S() called。(实测vs2015打印2次,gcc和clang中只打印一次) C++17开始,S(1)这个纯右值不一定要物化为tmp,意思是在这个程序中 ...
分类:
编程语言 时间:
2018-03-21 15:01:46
阅读次数:
233
Prime Number Definition An integer greater than one is called a prime number if its only positive divisors (factors) are one and itself. For instance, ...
分类:
其他好文 时间:
2018-03-20 22:58:42
阅读次数:
342
官方解释: 这个叫做fallback function,当有人 1. 只发送以太币给合约而不带任何输入数据;2. 调用smart contract时调起了一个不存在的方法。会触发执行这个方法。 What is the deal with “function () { ... }” inside So ...
分类:
其他好文 时间:
2018-03-19 16:45:05
阅读次数:
521
这里有3个原因:1.所有的woker thread(工作线程; 辅助线程)都在运行其他的job2.scheduler(调度器)down了(关于这个down。我不太明确是shutdown了。。还是挂掉了。因此下文依旧用down。)3.任务被安排在过去的某一时刻启动(此可能为代码错误) 我的 我的解决方 ...
分类:
其他好文 时间:
2018-03-14 15:15:46
阅读次数:
419
题目链接: http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=2723 题目描述: Prime Number Definition An integer greater than one is called a prime nu ...
分类:
其他好文 时间:
2018-03-11 14:39:30
阅读次数:
226
Josephina is a clever girl and addicted to Machine Learning recently. She pays much attention to a method called Linear Discriminant Analysis, which h ...
分类:
其他好文 时间:
2018-03-06 14:41:06
阅读次数:
199