当前位置:   article > 正文

c++ set运算符重载_c++ 结构体 std::set,需要重载

c++ 结构体 std::set,需要重载
  1. #include<iostream>
  2. #include<set>
  3. #include<vector>
  4. using namespace std;
  5. int main(void) {
  6. int i, j, k, N, M, K;
  7. vector<int> v ={10, 6, 11, 0, 100, -1};
  8. set<int> te;
  9. for(i = 0; i < v.size(); i++) {
  10. te.insert(v[i]);
  11. printf("no reload operation: ");
  12. for(auto it:te) printf("%d ", it);
  13. printf("\n");
  14. }
  15. struct nod{
  16. int val;
  17. bool operator < (const nod &a) const{
  18. return val > a.val;
  19. }
  20. };
  21. set<nod> tk;
  22. for(i = 0; i < v.size(); i++) {
  23. tk.insert({v[i]});
  24. printf("after reload operation < : ");
  25. for(auto ti:tk) printf("%d ", ti.val);
  26. printf("\n");
  27. }
  28. return 0;
  29. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/382980
推荐阅读
相关标签
  

闽ICP备14008679号