(1)void algo3(Queue &Q){Stack S; int d;InitStack(S);while(!QueueEmpty(Q)){DeQueue(Q,d);Push(S,d);}while(!StackEmpty(S)){Pop(S,d);EnQueue(Q,d);}}(2) void Demo1( Stack *S, int m){ Stack T; int i; InitStack (T); while (! StackEmpty(S)) if(( i=Pop(S)) !=m) Push( T,i); while (! StackEmpty(T)) { i=Pop(T); Push(S,i); } }謝謝 啦 詳細(xì)一點點 最好了
麻煩簡述以下算法的功能(棧和隊列的元素類型均為int)
人到中年有點甜
2022-06-11 11:07:54