摘要:
#include #include using namespace std; typedef struct Node{ int data; Node *next; }LNode, *LinkList; void Creat(LinkList &L){ L = new Node; L->next = NULL; cout > p->data; ... 阅读全文
posted @ 2016-04-13 18:12
handsomecui
阅读(759)
评论(0)
推荐(0)