コード例 #1
0
	void shiftStacks(){
		if(oldStack.isEmpty()){
			while(!newStack.isEmpty())
				oldStack.push(newStack.pop());
		}
	}
コード例 #2
0
ファイル: stack_main.cpp プロジェクト: rzuniga64/cplusplus
void showStack(stack<T> temp){
	cout << "stack from top" << endl;
	while (!temp.isEmpty())
		cout << temp.pop() << " " << endl;
	cout << endl;
}