# hicollections **Repository Path**: 1467792822/hicollections ## Basic Information - **Project Name**: hicollections - **Description**: 提供C风格的容器实现,容器本身无需分配任何内存。 - **Primary Language**: Rust - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-03-08 - **Last Updated**: 2023-12-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # hicollections 提供C风格的容器实现,包括List/RbTree/AvlTree. 他们共同的特点是容器本身不分配任何内存,在某些场景中有自身的优势. 容器支持Send,但任何元素挂接到集合后,元素本身就不能支持所有权转移和覆写, 当然元素是不支持Send的. BtreeMap/BTreeSet可以定制内部节点的内存分配策略.