中缀算式转后缀算式

#include<stdio.h> #include<string.h> #include<stdlib.h> #ifndef _Stack_h struct StackRecord; typedef struct StackRecord *Stack; int IsEmpty(Stack s); int IsFull(Stack s); Stack CreateStack(int MaxEl
相关文章
相关标签/搜索