gpt4 book ai didi

c++ - 如何在 C++ 中使用两个排序标准(对于一组对)创建一个有序集?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:08:19 27 4
gpt4 key购买 nike

我需要订购一组对(一个是 int,第二个是 char),我需要像这样订购我的套装:12 G, 11 F, 10 A, 10 B, 10 C(从第一个降序,从第二个升序)第一。到目前为止,这是我尝试过的方法,但出现了一些错误:

#include <iostream>
#include <fstream>
#include <algorithm>
#include <utility>
#include <set>

using namespace std;
set <pair <int,char> > s;

bool myfunction( const pair<int, char>& i, const pair<int, char>& j ) {
if( i.first < j.first ) return false;
if( j.first < i.first ) return true;
return j.second < i.second;
}

void writes()
{ set <pair<int,char> >::iterator it;
for (it = s.begin();it<= s.end();it++) /// line (18)
cout<<(*it).second<<" "<<(*it).first<<"\n\n";
}
int main()
{ ifstream f("info.in");
int n;
f>>n;
for (int i=1;i<=n;i++)
{ pair<int,char> x;
int st;
char nd;
f>>st;
f>>nd;
x.first=st;
x.second=nd;
s.insert(x);
}
writes();
}

我得到的第一个错误是在第 (18) 行:'operator<=' 不匹配(操作数类型是 'std::set >::.....

非常感谢您的帮助

我的输入文件是这样的:

5
10 B
10 A
10 C
11 F
12 G

@Sam Varshavchik,谢谢!这解决了我的错误问题。但是,我仍然没有得到我需要的输出。我只得到:

10 A
10 B
10 C
11 F
12 G

是否可以更改成对的订单标准?如果没有,您会推荐使用什么?

看起来排序标准的 myfunction 仍然被程序忽略。我怎么能在我的一对里面重载它?看起来,它只是放在那里,从未使用过。无论如何,该程序都能正常工作

我也试过这个:Using custom std::set comparator但还是不行

using namespace std;

struct lex_compare {
bool operator()(const pair<int, char>& i, const pair<int, char>& j )
{
if( i.first != j.first )
{
return (i.first > j.first);
}

return (j.second > i.second);
}
} // forgot ";", after adding it, it works perfectly.
set <pair <int,char>, lex_compare > s; ///line (22)

void writes()
{ set <pair<int,char> >::iterator it;
for (it = s.begin();it!= s.end();it++) /// line (18)
cout<<(*it).second<<" "<<(*it).first<<"\n\n";
}
int main()
{ ifstream f("info.in");
int n;
f>>n;
for (int i=1;i<=n;i++)
{ pair<int,char> x;
int st;
char nd;
f>>st;
f>>nd;
x.first=st;
x.second=nd;
s.insert(x);
}
writes();
}

错误:第 (22) 行:“s”之前的声明符无效;

最佳答案

for (it = s.begin();it<= s.end();it++)

迭代器通常不会实现小于/大于类型的比较。迭代器通常只实现 ==!=比较,平等测试。这应该是:

for (it = s.begin();it != s.end();it++)

(只有随机访问迭代器可以安全地使用 <> 运算符进行比较,并且 std::set 的迭代器不是随机访问迭代器)

这回答了您提出的问题:编译错误。这个问题与您的自定义集合比较功能没有任何关系;这将是一个不同的问题。

关于c++ - 如何在 C++ 中使用两个排序标准(对于一组对)创建一个有序集?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37535282/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com