开发者社区> 问答> 正文

c++如何实现二维队列?

问题是,现在有一段字符串,我要搜索找出里面的重复的字母,和他们的下标。比如:
abcaabbcd
建立成表:
a 0 3 4
b 1 5 6
c 2 7
因为重复字母个数不定,重复的下标数也不确定。各位能不能想到什么办法实现呢?

展开
收起
a123456678 2016-03-06 10:06:17 2033 0
1 条回答
写回答
取消 提交回答
  • #include
    #include
    #include
    void count(std::map >& mapWord2Index, const std::string& strWords)
    // mapWord2Index为统计结果
    // strWords为要统计的字符串
    {
    for(int i = 0; i < strWords.length(); ++i)
    {
    mapWord2Index[strWords[i]].push_back(i);
    }
    }
    
    2019-07-17 18:54:06
    赞同 展开评论 打赏
问答分类:
C++
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
使用C++11开发PHP7扩展 立即下载
GPON Class C++ SFP O;T Transce 立即下载
GPON Class C++ SFP OLT Transce 立即下载