标签:void 操作 ref 基本操作 逆置 oid lin without https
带头结点
void InvertList(LinkList &L) {
Lnode *p = L->next;
if (p == NULL) return;
Lnode *q = p->next;
while (q != NULL ) {
p->next = q->next;
q->next = L->next;
L->next = q;
q = p->next;
}
}
不带头结点
void InsertList_withoutHead(LinkList &L) {
Lnode *p = L;
if(p == NULL) return;
Lnode *q = p->next;
while (q != NULL) {
p->next = q->next;
q->next = L;
L = q;
q = p->next;
}
}
代码链接,包括头插入法,尾插入法,前插操作,后插操作等基本操作。
标签:void 操作 ref 基本操作 逆置 oid lin without https
原文地址:https://www.cnblogs.com/wryy/p/13216003.html