摘要:
#include <stdio.h> #include <stdlib.h> #define getnode(type) (type*)malloc(sizeof(type)) struct node { char info; struct node*link; }*top,*p; char c; 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> typedef struct anode { char info; struct anode*link; }*ptype_node; /* (1)按定义变量的方法写出定义体 (2)把变量名换成新类型名 (3)在最前面加上关 阅读全文