字符统计
#include#include#includeusing namespace std;int main(){ string str; while(cin>>str) { vectorcount(256,0); int max=0; for(int i=0;imax) { //遍历完一次之后,max就是当前字符中出现的次数最多的 max=count[str[i]]; } } while(max) { for(int i=0;i<256;i++) { //从头到尾依次遍历,依次打印出数量为max的字符,解决了数量大小一致按照ASII码从小到大排序输出 if(count[i]==max) { printf("%c",i); } } max--; } printf("\n"); } return 0;}
错误代码,有待改善
#include#include#include
暂时没有评论,来抢沙发吧~