04 2021 档案

摘要:内存池 https://www.mdeditor.tw/pl/g2Jw pool_allocator https://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-api-4.6/a00979_source.html https://blog.csdn.net 阅读全文
posted @ 2021-04-22 11:43 巴啦啦大魔王 阅读(127) 评论(0) 推荐(0)
摘要:1.记录索引交换 class Solution { public: int minSwapsCouples(vector<int>& row) { int len=row.size(); vector<int> idx(len,-1); int ret=0; for(int i=0;i<len;++ 阅读全文
posted @ 2021-04-20 18:51 巴啦啦大魔王 阅读(44) 评论(0) 推荐(0)
摘要:Dijkstra算法 https://www.cnblogs.com/biyeymyhjob/archive/2012/07/31/2615833.html dijkstra Bellman_Ford与Floyd算法的性质比较与实现 https://blog.csdn.net/jxlincong/a 阅读全文
posted @ 2021-04-13 17:48 巴啦啦大魔王 阅读(103) 评论(0) 推荐(0)
摘要:Hierholzer算法https://taodaling.github.io/blog/2019/04/25/Hierholzer%E7%AE%97%E6%B3%95/https://www.cnblogs.com/vocaloid01/p/9514023.htmlhttps://www.jian 阅读全文
posted @ 2021-04-12 16:16 巴啦啦大魔王 阅读(89) 评论(0) 推荐(0)
摘要:官方文档 https://clickhouse.tech/docs/en/operations/system-tables/tables/ 一、关于建表 CREATE TABLE [IF NOT EXISTS] [db.]table_name [ON CLUSTER cluster] ( name1 阅读全文
posted @ 2021-04-02 14:32 巴啦啦大魔王 阅读(172) 评论(0) 推荐(0)
摘要:#!/bin/bash # Only 1 parameter ! if [ $# != 2 ];then echo " Usage: .\read.sh filename parameter !"; exit fi # check the file ! if ! [ -f $1 ];then ech 阅读全文
posted @ 2021-04-02 11:07 巴啦啦大魔王 阅读(90) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/weixin_33672109/article/details/92378342 #!/bin/bash if [ "$#" -ne 2 ] ; then echo "USAGE: $0 -f server_list_file cmd" exit -1 f 阅读全文
posted @ 2021-04-01 15:58 巴啦啦大魔王 阅读(130) 评论(0) 推荐(0)