摘要: #include <iostream>#include <string>using namespace std;#define NULL 0class node{public: node * createlink(); void printlink(node *head); node * insertlink(node *head,string num1); node * dellink(node *head,string num2);private: string data; node* next;};node* node::createlink(){ node *h 阅读全文
posted @ 2012-07-24 16:18 紫素 阅读(151) 评论(0) 推荐(0) 编辑