单向链表完整代码
摘要:
1 #include 2 #include 3 #include 4 #include 5 typedef struct node 6 { 7 int data; 8 struct node * next; 9 }linkNode; 10 typedef linkNode *pLinkNode; 11 12 void creatLink... 阅读全文
posted @ 2017-04-04 16:42 华山青竹 阅读(912) 评论(0) 推荐(0)
浙公网安备 33010602011771号