摘要: void Reserve(point **head)//链表反向链接--招式one { point *p, *q, *r;//定义3个指针变量 p = (point *)malloc(sizeof(point)); q = (point *)malloc(sizeof(point)); r = (point *)malloc(sizeof(point)); ... 阅读全文
posted @ 2016-07-26 19:09 Amoshen 阅读(212) 评论(0) 推荐(0) 编辑
摘要: //创建链表 void Creat_Link_List(point **head, int l) { point *p, *q;//p为指向最末端的指针(最末端指next = NULL),q为构建链表的新变量,看下面就知道 int i;//i为循环变量 p = (point *)malloc(sizeof(point)); p->next = NULL; ... 阅读全文
posted @ 2016-07-26 18:44 Amoshen 阅读(179) 评论(0) 推荐(0) 编辑