Пожалуйста, прочтите новое правило об ограничении использования AI-инструментов. ×

Блог пользователя rachitiitr

Автор rachitiitr, история, 8 лет назад, По-английски

struct node{
int i, j, val;
};

set<node> A;
I insert many nodes in A. Now I want to get the lower_bound for some val = k. How do I use A.lower_bound() in this case?

  • Проголосовать: нравится
  • -3
  • Проголосовать: не нравится

»
8 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Auto comment: topic has been updated by rachitiitr (previous revision, new revision, compare).

»
8 лет назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

You can define a custom comparator and then make queries like A.lower_bound({0,0,k}) for example.

Check this example for more clarification: http://ideone.com/xbUGBr

»
8 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

You have to define the comparison operator (<) if you want to be able to do lower_bound. I've always liked the friend feature of C++.

struct node
{
    int i,j,val;
    friend bool operator < (node n1, node n2)
    {
        // Define your own ordering criteria here
    }
};
»
8 лет назад, # |
Rev. 5   Проголосовать: нравится +12 Проголосовать: не нравится

when you use A.lower_bound(dummy) it will return iterator to the first node not less than dummy

so your struct should be something like this

struct node{
  int i, j, val;
  bool operator<(node &tmp)const{
    if(val!=tmp.val)return val<tmp.val;
    if(i!=tmp.i)return i<tmp.i;
    return j<tmp.j;
  }
  // of course the logic of the comparator is just example,
  //you should change it as needed in your problem
};

be careful, the std::set does not has == operator, and it uses the < operator to achieve the uniqueness. in other words, if you insert node a and the set wants to check a against node b to check if they are equal or not, it will do the following,

if ( a < b ) => false then if ( b < a ) => false, then it assume that they are equal.

so if your operator does not consider some element in the struct in the < operator it might be the case that the set assume 2 elements are equal while they are not "that's why i used the 3 variables in my example for the < operator".