我std::set
在以下代码中创建了一个,其中元素根据数组进行排序。
int weight[] = {0, 1, 58, 21, 10, 21, 24};
struct Comp
{
public:
bool operator() (const int &a, const int &b) const
{
if (weight[a] == weight[b])
return a < b;
else
return weight[a] < weight[b];
}
};
set<int, Comp> s;
令人惊讶的是,当我更改weight
数组中的任何元素时,集合中的相应元素消失了。这是我的测试功能:
void print()
{
printf("Elements = ");
for(int i = 1; i <= 6; i++)
if(s.find(i) != s.end())
printf("%2d ", i);;
printf("\n");
}
int main()
{
for(int i = 1; i <= 6; i++)
s.insert(i);
print();
weight[2] = 1;
weight[5] = 15;
print();
return 0;
}
输出:
Elements = 1 2 3 4 5 6
Elements = 1 3 4 6
我gcc 4.6.3
在buntu中使用。