#ifndef PRINT_SEQ_H #define PRINT_SEQ_H #include template void print_seq(const C &c) { using std::cout; using std::endl; cout << "[length: " << c.size() << "] "; for (const auto &x : c) std::cout << x << " "; cout << endl; } #endif