循环单向链表
图(a)添加头节点 图(b)添加尾节点
void addToTail(int el) {
if (isEmpty()) {
tail = new IntSLLNode(el);
tail->next = tail;
}
else {
tail->next = new IntSLLNode(el,tail->next);
tail = tail->next;
}
- }