【问题标题】:Upper bound in pair vector c++对向量c ++中的上限
【发布时间】:2011-08-29 05:04:58
【问题描述】:
#include <algorithm>
#include <iostream>
#include <iterator>
#include <string>
#include <vector>
#include <utility>

using namespace std;

typedef pair<int,int> Pair;

inline bool less_than_second( const Pair& b1, const Pair& b2 ){
   return b1.second < b2.second;
}

int main()
{
   const int SP1[] = { 2,53,21,55,36,5,1};
   const int EP1[] = { 18, 20, 26, 30, 41,1,5 };
         int i;


   const int num_pairs = sizeof( SP1 ) / sizeof( SP1[0] );
    vector<int> sm(num_pairs);

      // vector <int> SP;

   vector<Pair> pair( num_pairs );
   transform( EP1, EP1+num_pairs, SP1,pair.begin(), make_pair<int,int> );// MAKE PAIR

   sort( pair.begin(), pair.end() );

   sort( pair.begin(), pair.end(), less_than_second );

   vector<Pair>::const_iterator pair_end = pair.end();
    vector<int> SP,EP;
    vector<int>::iterator low,up;

   for( vector<Pair>::const_iterator ptr = pair.begin();ptr != pair_end; ++ptr )
   {

            int SP = ptr->second;
        int EP = ptr->first;

      cout<<"("<<SP<<","<<EP<<")\n";
      } 
   //cout<<"("<<SP<<","<<EP<<")\n";
   low=lower_bound (SP.begin(), SP.end(), 20); 
   up= upper_bound (SP.begin(), SP.end(), 20);

  cout << "lower_bound at position " << int(low- SP.begin()) << endl;
  cout << "upper_bound at position " << int(up - SP.begin()) << endl;


   up= upper_bound (pair.begin(), pair.end(), 20);                


  cout << "upper_bound at position " << int(up - pair.begin()) << endl;

   getchar();
}

我对对向量进行了排序,我试图获取对中向量之一的 upper_bound 的值,但它给了我 位置 = 0 处的上界。

请多多包涵,我是 C++ 的新手,想学习。请帮助修复此代码。谢谢你

【问题讨论】:

    标签: c++ algorithm visual-c++ data-structures stl-algorithm


    【解决方案1】:

    据我所知,您从未将任何数据放入SP 向量中。您的意思可能不是int SP = ptr-&gt;second;,而是SP.push_back(ptr-&gt;second);

    附带说明,由于排序不稳定,因此在使用谓词对其进行排序之前调用sort( pair.begin(), pair.end() ); 是没有意义的。

    最后,您不妨选择The Definitive C++ Book Guide and List 中的一本书来帮助您学习语言。

    【讨论】:

    • 也使用distance(pair.begin(), up)而不是int(up - pair.begin())
    猜你喜欢
    • 2014-06-16
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-08-09
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多