摘要: 创建,查询,插入,删除。 1 #include<stdlib.h> 2 #include<iostream> 3 using namespace std; 4 typedef struct LNode{ 5 int data; 6 struct LNode *next; 7 }*List; 8 9 阅读全文
posted @ 2020-01-06 13:46 老葛 阅读(165) 评论(0) 推荐(0) 编辑