utils.cpp 532 B

123456789101112131415161718192021222324252627282930313233
  1. #include "utils.h"
  2. void display(const vector<u32>& v, ostream& os) {
  3. for (vector<u32>::const_iterator iter = v.begin(); iter != v.end(); ++iter) {
  4. os << *iter << "\n";
  5. }
  6. os << endl;
  7. }
  8. void display_message(char ch)
  9. {
  10. cout << ch << endl;
  11. }
  12. void display_message(const string& s)
  13. {
  14. cout << s << endl;
  15. }
  16. void display_message(const string& s, int v1)
  17. {
  18. cout << s << ", num v1 = " << v1 << endl;
  19. }
  20. void display_message(const string&s, int v1, int v2)
  21. {
  22. cout << s << ", num v1 = " << v1 << ", num v2 = " << v2 << endl;
  23. }