摘要: #include <bits/stdc++.h> using namespace std; typedef char ElemType; typedef struct LNode{ ElemType data; struct LNode * next; }LinkNode; void Creator 阅读全文
posted @ 2020-11-20 17:28 Diaphanous 阅读(75) 评论(0) 推荐(0)
摘要: // 莆林之光nb #include <bits/stdc++.h> using namespace std; const int MaxSize = 50; typedef char ElemType; typedef struct{ ElemType data[MaxSize]; int len 阅读全文
posted @ 2020-11-20 17:12 Diaphanous 阅读(79) 评论(0) 推荐(0)