摘要:
#include #include #include //#define DEBUGtypedef struct node{ int data; struct node *next;}Node,*Pnode; //在p节点后面插入一个节点void insert(Pnode p,int data){ Pnode temp = NULL; temp = (Pnode)malloc(sizeof(Node)); assert(temp); temp->data = data; temp->next = p->next; p->next = temp;#ifdef D... 阅读全文
posted @ 2013-07-18 14:42
zhaopu
阅读(153)
评论(0)
推荐(0)