摘要: 代码段: 1 #include "stdafx.h" 2 #include<stdio.h> 3 #include<stdlib.h> 4 5 6 //节点结构体 7 typedef struct LNode 8 { 9 int data; 10 struct LNode *next; 11 }; 阅读全文
posted @ 2022-03-28 15:57 菜鸡拾光 阅读(65) 评论(0) 推荐(0)