摘要: 本次程序可输出链表的中间结点的数据。 1 #define _CRT_SECURE_NO_WARNINGS 1 2 #include <stdio.h> 3 #include <stdlib.h> 4 struct Node { 5 int data; 6 struct Node* next; 7 } 阅读全文
posted @ 2021-05-24 23:37 EvanTheBoy 阅读(74) 评论(0) 推荐(0) 编辑