首页 > 代码库 > 不同寻常的单链表删除的方法
不同寻常的单链表删除的方法
/* * ===================================================================================== * Filename: singly_link.c * Author: RollStone (rs), jealdean@outlook.com * Copyright: All Rights Reserved. Copyright(c) 2007-2014 * Description: * * Version: 1.0 * Created: 09/29/2014 21:49 * Revision: none * Compiler: gcc * Last_Changed: 2014-10-03 18:29:35 * ===================================================================================== */typedef struct node{ struct node *next;}node;typedef bool (*remove_fn)(node const *v);void remove_if(node **header,remove_fn rm){ for ( node** curr=head;*curr; ) { node *entry=*curr; if(rm(entry)) { *curr=entry->next; free(entry); } else { curr=&entry->next; } }}
不同寻常的单链表删除的方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。