上一页 1 2 3 4 5 6 7 8 ··· 105 下一页
摘要: 转自:https://developer.aliyun.com/article/297612,https://blog.csdn.net/My_heart_/article/details/51534624 1.介绍 cin和cout分别是istream类和ostream类的对象,在类库提供的头文件 阅读全文
posted @ 2024-01-01 17:58 lypbendlf 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 转自:https://cloud.tencent.com/developer/article/1176183 1.介绍 字节序,指字节在内存中存储的顺序。 如一个int32_t类型的数值占用4个字节,这4个字节在内存中的排列顺序就是字节序。字节序有两种: 1)小端字节序(Little endinan 阅读全文
posted @ 2024-01-01 16:44 lypbendlf 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/KFLING/article/details/80187847, 1.介绍 #include <algorithm> //头文件remove_if(begin,end,op);//(迭代器-开始位置,迭代器-终止位置,回调函数) 如果回调函数返回为真 阅读全文
posted @ 2023-12-26 15:33 lypbendlf 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 转自:https://zhuanlan.zhihu.com/p/439331952(讲的很好),https://zhuanlan.zhihu.com/p/32027014 1.介绍 服务发现:精准地定位需要调用的服务ip以及端口。主要包括2部分: 服务注册 — 存储服务的主机和端口信息 服务发现 — 阅读全文
posted @ 2023-11-11 22:47 lypbendlf 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/breaksoftware/article/details/82947838 1.总结 在头部插入。 元素数量>15k时,效率unordered_set > set,unordered_map > map。 元素数量<1024时,效率unordere 阅读全文
posted @ 2023-10-05 21:07 lypbendlf 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/qq_40399646/article/details/109034331,这个博客讲的非常好 http://jinguoxing.github.io/redis/2018/09/04/redis-scan/ 1.介绍 keys命令可以列出所有满足特 阅读全文
posted @ 2023-10-03 18:05 lypbendlf 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/u014401141/article/details/53010608 https://blog.csdn.net/qq_44761854/article/details/123185460 1.介绍 WHERE 搜索条件在进行分组操作之前应用;而 阅读全文
posted @ 2023-10-03 16:57 lypbendlf 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/u012111465/article/details/85250030 举的例子很好。ck。 官方文档:https://clickhouse.com/docs/zh/sql-reference/functions/arithmetic-functio 阅读全文
posted @ 2023-10-02 22:17 lypbendlf 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.modb.pro/db/71726 1.常用命令 单个set操作: >sadd idbset i d b #添加1至多个元素 (integer) 3 > scard idbset #返回set大小 (integer) 3 > smembers idbset #返回set 阅读全文
posted @ 2023-10-02 22:03 lypbendlf 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 转自:https://zhuanlan.zhihu.com/p/340804463?utm_id=0,提到了许多参数,用到时可以参考 1.介绍 cat /etc/passwd | grep root 等同于 echo "hello world" | echo 管道命令|,将左侧命令(cat /etc 阅读全文
posted @ 2023-10-02 15:33 lypbendlf 阅读(8) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 105 下一页