摘要:
1 // 顺序栈.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h"//test1.0--栈表仅限Int类型 5 #include 6 7 #define true 1 8 #define false 0 9 10 typedef struct stack_type 11 { 12 int stack[100];... 阅读全文
摘要:
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)); ... 阅读全文
摘要:
//创建链表 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; ... 阅读全文