to7str

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

2012年10月15日

摘要: #include<stdio.h>#include<stdlib.h>#include<string.h>struct node{ int data; struct node *next;};struct node *pHead = NULL;void display(void ){ struct node *p; p = pHead; while(NULL != p) { printf("%d ", p->data); p = p->next; } printf("\n\r");}void insert( 阅读全文
posted @ 2012-10-15 23:45 to7str 阅读(185) 评论(0) 推荐(0) 编辑