mirror of
https://gitee.com/apaki/unicstl.git
synced 2026-05-28 22:54:19 +08:00
- 将所有打印和比较函数的参数指针从 `void*` 修改为 `const void*`,增强类型安全 - 引入自定义断言宏 `unicstl_assert` 及其实现,替换标准 `assert` - 优化动态数组容量增长策略,新增 `unicstl_new_capacity` 函数 - 重构链表 接口:`push`/`pop` 重命名为 `push_back`/`pop_front`,新增 `push_front`/`pop_back`/`insert`/`remove`/`contains` 方法 - 移除链表结构体中未使用的 `_index_front` 和 `_index_back` 成员 - 在头文件中补充关键函数的时间复杂度注释 |
||
|---|---|---|
| .. | ||
| darray.h | ||
| deque.h | ||
| graph.h | ||
| heap.h | ||
| iterator.h | ||
| linklist.h | ||
| list.h | ||
| queue.h | ||
| stack.h | ||
| tree.h | ||
| unicstl_config.h | ||
| unicstl_internal.h | ||
| unicstl.h | ||