摘要:
链表通过尾部插入 #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
阅读(60)
评论(0)
推荐(0)
浙公网安备 33010602011771号