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,971 questions

51,913 answers

573 users

How to circularly rotate a string to right by N places in C++

2 Answers

0 votes
#include <string>
#include <iostream>
 
int main()
{
    std::string str = "ExMachina";
    
    int lenstr = str.length();
    int N = 3;
  
    std::string right_rotation = str.substr(lenstr - N, N) + str.substr(0, lenstr - N);

    std::cout << right_rotation;
}
 
 
 
 
/*
run:
 
inaExMach
 
*/

 



answered Nov 28, 2023 by avibootz
edited Nov 28, 2023 by avibootz
0 votes
#include <string>
#include <iostream>
#include <algorithm>
  
int main()
{
    std::string str = "ExMachina";
    int N = 3;

    rotate(str.rbegin(), str.rbegin() + N, str.rend());

    std::cout << str;
}
  
  
  
  
/*
run:
  
inaExMach
  
*/

 



answered Nov 28, 2023 by avibootz

Related questions

1 answer 89 views
2 answers 146 views
1 answer 97 views
1 answer 154 views
1 answer 661 views
1 answer 100 views
...