摘要: #include<stdio.h> #include<stdlib.h> struct Node { int data; struct Node* next; }; //创建链表 struct Node* createList() { struct Node* headNode=(struct No 阅读全文
posted @ 2023-01-08 15:36 Yoku 阅读(21) 评论(0) 推荐(0)