https://www.scala-lang.org/files/archive/spec/2.11/08-pattern-matching.html https://docs.scala-lang.org/tour/pattern-matching.html https://danielwesth ...
分类:
其他好文 时间:
2018-11-12 01:19:04
阅读次数:
161
From:http://www.math.uwaterloo.ca/tsp/uk/index.html Shortest possible tour to nearly every pub in the United Kingdom. Line drawing of the optimal rout ...
分类:
其他好文 时间:
2018-11-10 21:18:52
阅读次数:
206
检测损坏数据的常用方法是第一次进入系统时计算数据的校验和,然后和传输后新生成的校验和进行匹配.若匹配失败,则认为数据被损坏了.常用CRC-32(cyclic redundancy check,循环冗余检查)计算一个32位的任何大小输入的证书校验和 HDFS会在读取数据时校验和,针对数据的每个io.b ...
分类:
其他好文 时间:
2018-11-02 15:31:19
阅读次数:
330
Go is an open source programming language that makes it easy to build simple,reliable, and effcient software. Try Go https://tour.golang.org/welcome/1 ...
分类:
其他好文 时间:
2018-10-22 16:44:26
阅读次数:
154
Struct用指针和用变量名引用struct里的值,用法是一样的。Struct初始化语法:typeVertexstruct{X,Yint}var(v1=Vertex{1,2}//hastypeVertexv2=Vertex{X:1}//Y:0isimplicitv3=Vertex{}//X:0andY:0p=&Vertex{1,2}//hastype*Vertex)Array数据长度是固定
分类:
其他好文 时间:
2018-10-08 00:37:48
阅读次数:
136
ForFor语句有三个基本部分组成,以分号隔开:初始语句:只在第一次循环开始前执行,通常就是变量定义和初始化,这里定义的变量作用范围只在For循环本身。条件表达式:每一次循环开始前执行,当false结束循环。post语句:每一次循环结束后执行。技巧:初始语句和post语句是可以省略的。条件表达式也可以省略,就是死循环。Go语言只有一个循环结构,就是for语句。while语句在Go中也是由for表示
分类:
其他好文 时间:
2018-10-07 23:18:04
阅读次数:
161
Packages,variablesandfunctionsPackagespackages中,以大写字母开头的name是exportedname,当importpackage时,只有exportedname可以被从外部访问。Functions同type的连续参数可以只在最后指明type。函数可以有多个返回值。funcswap(x,ystring)(string,string){returny,x
分类:
其他好文 时间:
2018-10-07 17:14:43
阅读次数:
127
描述 The city executive board in Lund wants to construct a sightseeing tour by bus in Lund, so that tourists can see every corner of the beautiful city. ...
分类:
其他好文 时间:
2018-10-04 23:54:32
阅读次数:
216
[题目链接] https://codeforces.com/contest/666/problem/B [算法] 首先 , 用BFS求出任意两点的最短路径 然后 , 我们用f[i][0-2]表示从i出发到达的最远三点 , g[i][0-2]表示到i距离最远的三个点 枚举b和c , 然后在枚举3 * ...
分类:
其他好文 时间:
2018-10-02 18:04:15
阅读次数:
162
Problem UVA1347-Tour Accept: 667 Submit: 3866Time Limit: 3000 mSec Problem Description John Doe, a skilled pilot, enjoys traveling. While on vacation, ...
分类:
其他好文 时间:
2018-09-30 00:54:15
阅读次数:
180