摘要:
queue.h #ifndef _QUEUE_H #define _QUEUE_H #include "all.h" #define LEN 3 //定义一个描述队列中每一个结点的结构体 typedef struct queuenode { Player *pArr; int MaxLen; int 阅读全文
摘要:
tree.h #ifndef _TREE_H #define _TREE_H #include <stdio.h> #include <stdlib.h> #include <string.h> typedef int data_type; //创建一个树节点 typedef struct tree 阅读全文
摘要:
link.h #ifndef _LINK_H #define _LINK_H #include<stdio.h> #include<string.h> #include<stdlib.h> #define N 10 typedef int data_type; //节点 typedef struct 阅读全文