一个简单的方法是,新建一个map 吧这些字符串当初map的key 然后读这些map就是升序排好的:例如有以下字符串:“abc”"hello" "world"map<CString,int> tmpMap;tmpMap.insert(make_pair("abc",1));tmpMap.insert(make_pair("hello",1));tmpMap.insert(make_pair("wolrld",1));for(map<CStri...