摘要: /* function: 将单向链表reverse,如ABCD变成DCBA,只能搜索链表一次 */ #include <iostream> using namespace std; struct node { char data; struct node *next; }; typedef stru 阅读全文
posted @ 2014-08-11 21:21 Aloys_Code 阅读(608) 评论(1) 推荐(0) 编辑
我的GITHUB|