數據結構與算法(九)

非循環單鏈表的算法(遍歷,查找,清空,銷燬,求長度,插入,刪除) p指向一個節點x,q指向新添節點,要求在x之後插入一個節點 僞代碼: //方法一 t = p->pnext p->pnext = q q->qnext = t //方法二 q->qnext = p->pnext p->pnext = q 刪除p指向節點的後面一個節點 r = p->pnext p->pnext = p->pnext
相關文章
相關標籤/搜索