链表创建途中遇到的问题
摘要:
#include <iostream> #include<new> using namespace std; struct node{ int data; node *next; }; class list{ public: node *head; list(){head=null}; list(i 阅读全文
posted @ 2015-08-17 11:13 邗影 阅读(248) 评论(0) 推荐(0) 编辑
posted @ 2015-08-17 11:13 邗影 阅读(248) 评论(0) 推荐(0) 编辑