摘要: #include <iostream>#include <stdlib.h>using namespace std;struct node{ int data; struct node *link;};typedef struct node *plist;plist creat_list(int m 阅读全文
posted @ 2020-09-19 16:58 嘻嘻嘻ziixi 阅读(116) 评论(0) 推荐(0) 编辑