Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,845 questions

51,766 answers

573 users

How to print a vector in reverse order by overloading the << operator with C++

1 Answer

0 votes
#include <iostream>
#include <vector>
#include <algorithm>
 
std::ostream& operator<<(std::ostream& os, const std::vector<char> &v) {
    for (int i = v.size() - 1; i >= 0; --i) {
        os << v.at(i) << " ";
    }
    return os;
}
  
int main()
{
    std::vector<char> v = {'a', 'b', 'c', 'd'};
    
    std::cout << v;
  
    return 0;
}
 
 
 
 
 
/*
run:
 
d c b a 
 
*/

 



answered Feb 19, 2021 by avibootz

Related questions

1 answer 208 views
1 answer 232 views
3 answers 216 views
1 answer 133 views
133 views asked Dec 2, 2022 by avibootz
1 answer 205 views
2 answers 254 views
2 answers 248 views
...