摘要: 1 # include<stdio.h> 2 # include<malloc.h> 3 typedef struct node { 4 int data;/*数据域*/ 5 struct node * next; /*指针域*/ 6 } node, *pnode; /*栈节点*/ 7 8 type 阅读全文
posted @ 2022-03-05 17:37 empty_y 阅读(131) 评论(0) 推荐(0)