摘要: #include"iostream.h" struct Node{int Data;Node*next;};class list{Node*head;public:list(){head=NULL;}void insertlist(int aData,int bData);void deleteli 阅读全文
posted @ 2017-02-26 16:23 朝_风 阅读(250) 评论(0) 推荐(0) 编辑