摘要: main.cpp #include "SCList.h" int main(){ List mylist; InitList(mylist); int select=1; ElemType Item; Node *p=NULL; while(select){ printf("************ 阅读全文
posted @ 2023-04-09 22:38 给我一碗炒粉 阅读(38) 评论(0) 推荐(0)
摘要: main.cpp #include "StaticList.h" int main() { StaticList SL; InitSList(SL); for (int i = 0; i < 5; ++i) { Insert(SL,'A'+i); } ShowSList(SL); DeleteSLi 阅读全文
posted @ 2023-04-09 22:31 给我一碗炒粉 阅读(30) 评论(0) 推荐(0)