hahahia

set 본문

Language/C++ STL

set

hahahia 2012. 3. 24. 12:09

/*
주어진 한 줄의 문자열을 set을 이용하여 
서로 다른 문자가 몇 개가 나왔는지 출력
<in>
“ABABAZCDEBOOQRSSRRR”
<out>
                  10
 */
 

#include <iostream>

#include <set>

#include <string>

using namespace std;

int main()

{

        string s;

        set<char> st;

        cin>>s;

        for(int i = 0 ; i<s.length(); i++)

               st.insert(s[i]);

        cout << st.size() <<endl;

        st.clear(); // st clear

}

 


'Language > C++ STL' 카테고리의 다른 글

vector erase, insert  (0) 2012.03.24
map  (0) 2012.03.24
Vector assign  (0) 2012.03.24
vector  (0) 2012.03.24
cmath  (0) 2012.03.24
Comments