当前位置: 代码迷 >> C语言 >> 删除节点(链表)
  详细解决方案

删除节点(链表)

热度:271   发布时间:2006-02-13 19:38:00.0
删除节点(链表)
删除最后一个节点:
person *current1 , *current2 ;
current1 = head ;
current2 = current -> next ;
while ( current2 -> next != NULL )
{
current1 = current2 ;
current2 = current1 -> next ;
}
free ( current1 -> next ) ;
current1 -> next = null ;
if ( head == current1 )
head = null ;

哪位学友解释一下这些代码?今天刚弄懂了插入节点,现在删除节点又迷糊了。。。
搜索更多相关的解决方案: 链表  节点  next  head  删除  

----------------解决方案--------------------------------------------------------
将要删除的节点释放,然后指针指向下一个.不知道你哪里不明白啊?
----------------解决方案--------------------------------------------------------
  相关解决方案