数据结构括号配对问题,本人在线等

日期:2016-02-19 13:56:49 人气:2

数据结构括号配对问题,本人在线等

下面是我写的程序: 你自己作个参考 : #include #include #include #include typedef char ElemType; typedef struct stack { ElemType data; struct stack *top; }LinkStack; int InitStack(LinkStack *&ls) { ls=NULL; return 1; } int ClearStack(LinkStack *&ls)
    A+
热门评论