摘要: #include #include struct weapon { int price; int atk; struct weapon * next; }; struct weapon * create() { struct weapon * head; struct weapon * p1,* p2; ... 阅读全文
posted @ 2016-10-20 07:56 php91 阅读(423) 评论(0) 推荐(0)