알파벳 개수 문제 << 클릭!
#include <iostream>
#include <string>
using namespace std;
int main(void) {
ios::sync_with_stdio(0);
cin.tie(0);
string S;
int count = 0;
cin >> S;
for (char i = 'a'; i <= 'z'; i++) {
for (int j = 0; j < S.size(); j++) {
if (S[j] == i) {
count++;
}
}
cout << count << " "; // 굳이 배열로 저장하지 말고 바로 출력
count = 0; // 초기화
}
}
다른 분들의 풀이 (출처:http://boj.kr/ece8236c02cf46aba9933f28e358b51c)
#include <bits/stdc++.h>
using namespace std;
int main(void) {
ios::sync_with_stdio(0);
cin.tie(0);
string s;
cin >> s;
for(char a = 'a'; a <= 'z'; a++){
int cnt = 0;
for(auto c : s)
if(a == c) cnt++;
cout << cnt << ' ';
}
}
다른 분들의 풀이2 (출처:https://www.acmicpc.net/source/share/d7178d89538a42ababf4455443e60fe2)
#include <bits/stdc++.h>
using namespacestd;
int freq[26]; // 각 문자의 등장횟수 저장 배열
int main(void) {
ios::sync_with_stdio(0);
cin.tie(0);
string s;
cin >> s;
for(auto c : s)
freq[c-'a']++; // 아스키 코드 참조!!
for(int i=0; i < 26; i++)
cout << freq[i] << ' ';
}
즉 해당 문자가 입력되면 c-'a'를 통해 해당 문자의 알파벳 배열의 원소 값을 +1해준다.
예를 들어 c = 'a'이면 0번째(97-97) 인덱스(a)에 접근 c = 'z'이면 25번째(122-97=25) 인덱스(z)에 접근