单向链表->单向循环链表
摘要:
1 #include <stdio.h> 2 #include <iostream> 3 #include <stdlib.h> 4 5 using namespace std; 6 7 struct Person{ 8 int age; 9 struct Person *next; 10 }; 11 Person *CrtHeadNode(){ 12 Person *head ,*tmp; 13 head = tmp = NULL; 14 Person *p=NULL; 15 int n; 16 cout<<"N... 阅读全文
posted @ 2012-11-01 17:52 凌峰布衣 阅读(335) 评论(0) 推荐(0) 编辑