TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
|
#include <cassert>
#include <iostream>
#include <stack>
Go to the source code of this file.
Functions | |
void | queue_test () |
int | main () |
Implementation of a Queue using two Stacks.
Definition in file queue_using_two_stacks.cpp.
int main | ( | void | ) |
Main function, calls testing function
Definition at line 141 of file queue_using_two_stacks.cpp.
void queue_test | ( | ) |
Testing function
Definition at line 101 of file queue_using_two_stacks.cpp.