to7str

   ::  ::  :: 联系 ::  :: 管理

2012年10月16日

摘要: #include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct node{ int data; struct node *next; struct node *pre;}Node;Node *pHead=NULL;void insert(Node *pNode){ if(NULL == pHead) { pHead = pNode; pHead->next = pNode; pHead->pre = pNode; return; } /*插头法*/ pNode->nex 阅读全文
posted @ 2012-10-16 20:42 to7str 阅读(180) 评论(1) 推荐(0) 编辑