728x90
단계별로 풀어보기 문자열의 3단계 문제
c++의 <string>을 포함하고 <string>의 편리한 함수를 사용하면 쉽게 풀 수 있다.
find 함수의 사용법은 다음과 같다.
string s1("Welcome");
cout << s1.find('o') << endl; // 4 출력 (처음부터 찾음)
cout << s1.find('o', 6) << endl; // 9 출력. (인덱스 6부터 'o'를 찾음)
if (s1.find("el", 3) == string::npos)
cout << "el은 없습니다" << endl;
find 함수는 찾고자 하는 문자 또는 문자열이 없으면 string::npos를 반환한다.
#include <iostream>
#include <string>
using namespace std;
int main() {
string s;
cin >> s;
int alphabet[26];
for (int i = 0; i < 26; i++) {
alphabet[i] = -1;
}
alphabet[0] = s.find('a');
alphabet[1] = s.find('b');
alphabet[2] = s.find('c');
alphabet[3] = s.find('d');
alphabet[4] = s.find('e');
alphabet[5] = s.find('f');
alphabet[6] = s.find('g');
alphabet[7] = s.find('h');
alphabet[8] = s.find('i');
alphabet[9] = s.find('j');
alphabet[10] = s.find('k');
alphabet[11] = s.find('l');
alphabet[12] = s.find('m');
alphabet[13] = s.find('n');
alphabet[14] = s.find('o');
alphabet[15] = s.find('p');
alphabet[16] = s.find('q');
alphabet[17] = s.find('r');
alphabet[18] = s.find('s');
alphabet[19] = s.find('t');
alphabet[20] = s.find('u');
alphabet[21] = s.find('v');
alphabet[22] = s.find('w');
alphabet[23] = s.find('x');
alphabet[24] = s.find('y');
alphabet[25] = s.find('z');
for (int i = 0; i < 26; i++) {
cout << alphabet[i] << " ";
}
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 17144번 미세먼지 안녕! (0) | 2020.01.28 |
---|---|
[백준] 14891번 톱니바퀴 (0) | 2020.01.27 |
[백준] 14889번 스타트와 링크 (0) | 2020.01.25 |
[백준] 14888번 연산자 끼워넣기 (0) | 2020.01.25 |
[백준] 1152번 단어의 개수 (0) | 2020.01.25 |