摘要: 版权所有,转载请标明出处!程序1:// // main.cpp // testC++06ReverseSingleLinkedList // // Created by fei dou on 12-8-9. // Copyright (c) 2012年 vrlab. All rights reserved. // #include using namespace std; typedef struct node{ char data; node * next; }Node; /*从头插入链表*/ inline void insertIntoListFromHea... 阅读全文
posted @ 2012-08-09 16:58 dancingrain 阅读(168) 评论(0) 推荐(0) 编辑