字串的統計
time limit:2000msmemory limit:131072kb64bit io format:%lld & %llu
submit
status
practice
hpu 1399
description
給定n個字串,我想知道第i個字串已經出現多少次?
input
第一行輸入乙個整數t,代表t(t <= 20)組測試資料。
每組資料第一行輸入乙個整數n,代表字串數目。接下來n行,每行輸入乙個字串str。
保證:1 <= n <= 20000,1 <= |str| <= 20。
output
每組資料輸出n個結果,每個結果佔一行,第i個結果表示第i個字串已經出現了多少次。
sample input
32aaaa3aaabaa4
aaaa
ccaa
aacc
ccaa
sample output
0100100
01
hint
#include #include #include #include #include using namespace std;
char str[32];
map< string, int > mp;
int main()
} return 0;
}
字串的統計字串
給定乙個字串,統計每乙個字母的出現次數 比如aabbccc,列印出來就是a 2 b 2 c 3 思路還是採取遍歷,注意這幾個題的思路都比較類似 要注意這裡的sstream 這裡的clear 並非清空了緩衝區,而只是重置標誌,如果要重置緩衝區,則應為ss.str include include usi...
字串的統計字串
題目 給定乙個字串str,返回str的統計字串。例如,aaabbadddffc 的統計字串為 a 3 b 2 1 d 3 f 2 c 1 補充題目 給定乙個字串的統計字串cstr,再給定乙個整數index,返回cstr所代表的原始字串上第index個字元。例如,a 1 b 100 所代表的原始字串上...
統計字串
題目 計算字串中字母 數字 其他字元的個數。datas segment buf db 80 len db string db 80 dup 32 crlf db 13,10,displ db the amount of letters is 13,10,dispd db the amount of ...