摘要:
``` #include using namespace std; struct Node { int id; int score; struct Node *next; }*list_head; void scan() { int id; Node *list_temp; list_head = NULL; list... 阅读全文
posted @ 2019-07-29 15:35
Kky丶
阅读(209)
评论(0)
推荐(0)