Algorithm C++

#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;
int main()
{
  string s("abcdefghihklmnopqrstuvwxyz");
  vector vector1(s.begin(), s.end());
  copy(vector1.begin() + 4, vector1.end(), vector1.begin());
  vector::iterator pos;
  for (pos=vector1.begin(); pos!=vector1.end(); ++pos) {
        cout << *pos << ' ';
  }
  return 0;
}
/* 
e f g h i h k l m n o p q r s t u v w x y z w x y z 
 */