이 튜토리얼에서는 C/C++에서 문자열을 반전시키는 다양한 방법을 이해하는 프로그램에 대해 논의할 것입니다.
예시
사용자 정의 reverse() 함수 -
#include <bits/stdc++.h> using namespace std; //function to reverse given string void reverse_str(string& str){ int n = str.length(); for (int i = 0; i < n / 2; i++) swap(str[i], str[n - i - 1]); } int main(){ string str = "tutorialspoint"; reverse_str(str); cout << str; return 0; }
내장된 reverse() 함수 사용하기 -
#include <bits/stdc++.h> using namespace std; int main(){ string str = "tutorialspoint"; reverse(str.begin(), str.end()); cout << str; return 0; }
주어진 문자열의 역순으로 인쇄하기-
#include <bits/stdc++.h> using namespace std; void reverse(string str){ for (int i=str.length()-1; i>=0; i--) cout << str[i]; } int main(void){ string s = "tutorialspoint"; reverse(s); return (0); }
출력
tniopslairotut