摘要: 集合键的底层实现之一,当集合只包含整数值元素,且报价函的元素不多时,就会使用整数集合作为集合键的底层实现。 #intset实现 typedef struct intset { uint32_t encoding; // 编码方式 uint32_t length; // 集合包含的元素数量 int8_ 阅读全文
posted @ 2023-03-20 19:35 新游 阅读(28) 评论(0) 推荐(0)