Archer_vsgoto

导航

 

2011年8月18日

摘要: 1 #include <stdio.h> 2 #include <malloc.h> 3 4 typedef struct node 5 { 6 int data; 7 struct node * next; 8 }node; 9 typedef node* link;10 link initnode(int data , link pnode)11 {12 link t = (link)malloc(sizeof(node));13 t->data = data;14 t ->next = pnode;15 return t;16 }17 void mai 阅读全文
posted @ 2011-08-18 21:26 Archer_vsgoto 阅读(216) 评论(0) 推荐(0)