Dapp 发展史 WASM 兼容Web的编码方式 跨链项目 Polkadot (DOT 波卡币) 是不是互联网基石? Polkadot 的 DOT 代币 Cardano(ADA 艾达币) 权益挖矿 VNT chain 解决联盟链和公链的跨链基础项目 对于公链的应用,我的看法是: 我们需要也正在寻求一 ...
分类:
移动开发 时间:
2020-01-29 21:42:31
阅读次数:
178
[root@localhost bin]# systemctl status firewalld.service● firewalld.service - firewalld - dynamic firewall daemon Loaded: loaded (/usr/lib/systemd/sys ...
分类:
其他好文 时间:
2020-01-29 21:41:44
阅读次数:
117
A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)-- everyone involved in moving a product from supplier to customer ...
分类:
其他好文 时间:
2020-01-29 14:23:02
阅读次数:
80
一 要实现的效果 二 官方文档 看一下官方文档上,替换symbol的描述: timeline.symbol string [ default: 'emptyCircle' ] timeline标记的图形。 ECharts 提供的标记类型包括 'circle', 'rect', 'roundRect' ...
分类:
其他好文 时间:
2020-01-28 12:31:20
阅读次数:
83
#include <bits/stdc++.h> #include <stdio.h> #include <stdlib.h> #include <queue> using namespace std; const int maxn = 100010; vector<int> child[maxn] ...
分类:
其他好文 时间:
2020-01-27 22:04:05
阅读次数:
73
#include <bits/stdc++.h> #include <stdio.h> #include <stdlib.h> #include <queue> using namespace std; const int maxn = 100010; struct node{ double dat ...
分类:
其他好文 时间:
2020-01-26 22:04:59
阅读次数:
96
#include <bits/stdc++.h> #include <stdio.h> #include <stdlib.h> #include <queue> using namespace std; const int maxn = 100010; vector<int> child[maxn] ...
分类:
其他好文 时间:
2020-01-26 20:49:51
阅读次数:
111
1) 意图 使多个对象连成一条链,沿着这条链传递请求,直到有个对象处理它为止。 2) 结构 其中: Handler定义一个处理请求的接口 ConcreteHandler处理它所负责的请求 Client向链上具体处理提交请求 3) 适用性 有多个对象可以处理一个请求,哪个对象处理该请求运行时刻自动确定 ...
分类:
编程语言 时间:
2020-01-25 22:12:08
阅读次数:
81
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img qhGszh5N 1579337680354)(https://user images.githubusercontent.com/58975336/72661253 e8eeae00 3a12 11ea 93ee 2d4 ...
分类:
Web程序 时间:
2020-01-25 10:26:27
阅读次数:
122
考虑树形$DP$,设$num_x$记录的为当$1$为根时,以$x$为子树中重要城市的个数。 那么进行分类讨论: ① 当$num_x≠0$时,则需将其所有满足$num_y≠0$的儿子$y$删去。 ② 当$num_x=0$时,若满足$num_y≠0$的儿子$y$个数$cnt=1$,则直接让$num$进行 ...
分类:
其他好文 时间:
2020-01-22 23:43:05
阅读次数:
83