摘要: #include#includetypedef struct Node{ int a; struct Node* pNext;}Node;Node* top = NULL;Node* end = NULL;void addNode(int a){... 阅读全文
posted @ 2017-09-18 20:10 DuanRui 阅读(160) 评论(0) 推荐(0) 编辑