摘要: #include <stdio.h>#include <stdlib.h> typedef int eletype;typedef struct stacknode{ eletype data; struct stacknode *next;}stacknode,*linkstack;linksta 阅读全文
posted @ 2022-03-20 17:58 zhichutian 阅读(57) 评论(0) 推荐(0)