遞歸調用:鏈表中刪除元素不斷鏈現象

刪除的代碼: void del(NodeList &L, ElemType x){     NodeList p;     if(L!=NULL)         if(L->data==x){             p = L;             L=L->next;             free(p);             cout<<L<<endl;             
相關文章
相關標籤/搜索