设计一算法,删除栈S中所有与变量C相同的元素。
void ex(seqStack*s,int c) { SeqStack T; int d; while(!StackEmpty(S)) { d=pop(S); if(d!=c)push(T,d); } while(!StackEmpty(T)) { d=pop(T); push(S,d); } }
设计一算法,删除栈S中所有与变量C相同的元素。
void ex(seqStack*s,int c) { SeqStack T; int d; while(!StackEmpty(S)) { d=pop(S); if(d!=c)push(T,d); } while(!StackEmpty(T)) { d=pop(T); push(S,d); } }