摘要: 链表通过尾部插入 #include<stdio.h> #include<stdlib.h> struct Test { int data; struct Test * next; }; printfLink(struct Test * head) { while(head!=NULL) { prin 阅读全文
posted @ 2022-12-07 23:12 WellMandala 阅读(52) 评论(0) 推荐(0) 编辑