阳光面包

文章
6
资源
0
加入时间
2年10月21天

clickhouse的http api与curl命令操作

创建表curl方式:echo ‘create table test.student11(dt Date, id UInt16, name String, age UInt16) ENGINE=MergeTree(dt, (id, name), 10)’| curl -XPOST ‘http://localhost:8123/’ -d @-api方式:HttpClientUtil.doPostByString(“http://node02:8123/”,“create table test.st

NOIP普及组 - 2019 - 公交换乘 题解

先来一个传送门本题在洛谷难度定为“普及-”,其实并不是很难,但我第一次做的时候只有30分,剩余的都是TLE, 在我进行了一个修改后就AC了。本题我用的是一个结构体和一个main函数,先来看看结构体struct Node{ long long time, price, vis = 0; // 没被用过是1,用过是2 }a[100010];每次乘地铁时进行一个这样的操作, 如果没看出有什么用,那就看接下来的代码int main(){ long long n, x, y, z, sum = 0,