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
次短路计数。 类似于最短路计数 + 次短路,在跑最短路的时候同时维护最短路,次短路,最短路的条数,次短路的条数,每一次更新在权值相同的地方计数。 要把(点,最/次短路)的二元组压成一个状态,每一次取出一个状态去扩展,一共有$4$种情况,具体实现可以参照代码。 $dij$或者$spfa$实现均可,这题 ...
分类:
其他好文 时间:
2018-09-25 20:43:47
阅读次数:
173
dgraph 的查询语法是在graphql 上的扩展,添加了新的支持,同时官方提供了一个 学习的网站 https://tour.dgraph.io/ 基本环境(cluster 模式的) 参考 github 项目 https://github.com/rongfengliang/dgraph-dock ...
分类:
其他好文 时间:
2018-09-23 13:45:45
阅读次数:
937
There is a travel agency in Adelton town on Zanzibar island. It has decided to offer its clients, besides many other attractions, sightseeing the town ...
分类:
其他好文 时间:
2018-09-16 18:40:01
阅读次数:
171