使用二级指针辅助遍历的单链表
摘要:
1. 代码 #include <stdio.h> #include <stddef.h> struct notifier_block { struct notifier_block *next; int priority; }; struct notifier_block *head = NULL; 阅读全文
posted @ 2021-12-13 13:07 Hello-World3 阅读(65) 评论(0) 推荐(0) 编辑