list定义
1 | /* |
list常用函数
listCreate-创建新链表
1 | /** |
listRelease-释放整个链表
1 | /** |
listAddNodeHead-添加新节点到链表头
1 | /** |
listAddNodeTail-添加新节点到链表尾
1 | /** |
listInsertNode-将新节点添加到老节点之前或之后
1 | /** |
listDelNode-删除指定节点
1 | /** |
listGetIterator-生成链表的迭代器
1 | /** |
listNext-返回迭代器当前所指向的节点
1 | /** |
listDup-复制整个链表
1 | /** |
listSearchKey-查找值为key的节点
1 | /** |
listIndex-返回链表在指定索引上的值
1 | /** |
listRewind-设置正向迭代器
1 | /** |
listRewindTail-设置反向迭代器
1 | /** |
listRotate-将链表尾移动到表头
1 | / |