比特币-简介数字货币银行系统:数字货币,没有现钞,没有银行网点;所有账目公开可查询;货币发行方式分布式的系统:基于P2P网络基于非对称密码学的交易:公钥锁定比特币,私钥解锁区块链作为银行账本 区块链-区块的生成和链接共识机制POW-Proof-of-Work:通过挖矿保证我是个善意的节点,并获得生成 ...
分类:
编程语言 时间:
2019-11-23 12:38:33
阅读次数:
75
Your friend is typing his into a keyboard. Sometimes, when typing a character , the key might get long pressed , and the character will be typed 1 or ...
分类:
其他好文 时间:
2019-11-23 09:28:27
阅读次数:
66
友元函数: 测试: cpp include include / 友元函数 / using namespace std; class Match; class Time { friend Match;//友元类的声明 public: Time(int hour, int min, int sec); ...
分类:
编程语言 时间:
2019-11-16 23:05:17
阅读次数:
58
#include<iostream> #include<queue> #include<string> #include<string.h> #define MAX_LENGTH 6 #define CHRCK(a,b) (a&&(b!=a)) using namespace std; typede ...
分类:
其他好文 时间:
2019-11-12 00:21:13
阅读次数:
95
- - - 1,五个语序: 主语+谓语(中英语序一致)主语+系动词+表语 (中英语序一致)主语+谓语+宾语(中英语序一致)主语+谓语+间宾+直宾(中英语序一致)主语+谓语+宾语+宾补(中英语序一致) 2,常用句型 3,英语口语常用问句100例: 常用问句 1. How are you doing? ...
分类:
其他好文 时间:
2019-11-10 13:23:58
阅读次数:
133
题目链接:https://vjudge.net/problem/POJ-1751 思路: 最小生成树板子,只需要多记录每个dis[x]的权值是从哪个点到x这个点的。 1 #include <stdio.h> 2 #include <iostream> 3 #include <queue> 4 #in ...
分类:
其他好文 时间:
2019-11-08 21:07:56
阅读次数:
90
高精类模板 基础实现凭借 "nofind" 功能 高精类正整数加减乘除。 高精类正整数与普通正整数类型加减乘除。(只是运算时转成高精并没有单独写所以复杂度不优) 函数及默认参数 LEN 压位高精的模数 BASE_LEN 压位高精位数 LEN 数位长度 a 数组 len 长度 print()输出 de ...
分类:
其他好文 时间:
2019-11-07 13:15:52
阅读次数:
99
You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 to 3 ston ...
分类:
其他好文 时间:
2019-11-06 11:40:01
阅读次数:
98
场景:在没有通过npm init初始化目录的情况下,直接通过cnpm命令安装模块,在卸载模块时报错 报错:name cannot start with an underscore; name can only contain URL-friendly characters 原因分析:通过cnpm命令 ...
分类:
其他好文 时间:
2019-11-06 01:11:29
阅读次数:
265
Java 编程语言中最大的困惑之一就是: java 是 按值传递 还是 按引用传递 。我在面试中经常会问面试者这个问题,但还是有很多面试者对这个问题的理解不是很正确。 有很多面试者是这样理解的: 如果传递类型为基础数据类型,则按值传递, 如果传递类型为类,则按引用传递。 这样的理解正确吗?他们甚至还 ...
分类:
编程语言 时间:
2019-11-05 13:15:37
阅读次数:
98