按索引值按字母顺序排序矢量

时间:2013-02-04 04:36:23

标签: c++ sorting vector alphabetical

我有一个矢量,我想按字母顺序排序。我已成功地按字母顺序按一个索引值对其进行排序,但是当我这样做时,它只更改该索引的顺序而不是整个向量。如何才能将订单更改应用于整个矢量? 这是我正在运行的当前代码:

std::sort (myvector[2].begin(), myvector[2].end(), compare);

bool icompare_char(char c1, char c2)
{
  return std::toupper(c1) < std::toupper(c2);
}

bool compare(std::string const& s1, std::string const& s2)
{
  if (s1.length() > s2.length())
    return true;
  if (s1.length() < s2.length())
    return false;
  return std::lexicographical_compare(s1.begin(), s1.end(),
                                      s2.begin(), s2.end(),
                                      icompare_char);
}

我的这个向量的一般结构是vector [row] [column],其中:

| One | Two | Three |
|  1  |  2  |   3   |
|  b  |  a  |   c   |

例如,如果我有一个向量:

myvector[0][0] = 'One' AND myvector[2][0]='b'
myvector[0][1] = 'Two' AND myvector[2][1]='a'
myvector[0][2] = 'Three' AND myvector[2][2]='c'

| One | Two | Three |
|  1  |  2  |   3   |
|  b  |  a  |   c   |

我得到了解答:

myvector[0][0] = 'One' AND myvector[2][0]='a'
myvector[0][1] = 'Two' AND myvector[2][1]='b'
myvector[0][2] = 'Three' AND myvector[2][2]='c'

| One | Two | Three |
|  1  |  2  |   3   |
|  a  |  b  |   c   |

而不是我想要的:

myvector[0][0] = 'Two' AND myvector[2][0]='a'
myvector[0][1] = 'One' AND myvector[2][1]='b'
myvector[0][2] = 'Three' AND myvector[2][2]='c'

| Two | One | Three |
|  2  |  1  |   3   |
|  a  |  b  |   c   |

我四处寻找一个好的方法,但找不到任何有用的东西......我在想这样的事情:

std::sort (myvector.begin(), myvector.end(), compare);

然后在我的比较函数中处理第三个索引的排序,这样整个矢量就会被编辑...但是当我传递我的数据时,我或者只更改了函数中的顺序,但仍然没有更改顶层或得到错误。任何建议或帮助将不胜感激。提前谢谢。

1 个答案:

答案 0 :(得分:4)

理想情况下,将3个数据字段合并为struct,这样您就可以只有1个向量,因此可以对其进行排序。

struct DataElement{
    std::string str;
    char theChar;
    int num;
    bool operator<(const DataElement& other)const{return theChar<other.theChar;}
};

std::vector<DataElement> myvector;

std::sort (myvector.begin(), myvector.end());