Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8143365
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T13:06:17+00:00 2026-06-06T13:06:17+00:00

I have a scenario that looks like this: #include <algorithm> using namespace std; //

  • 0

I have a scenario that looks like this:

#include <algorithm>
using namespace std;

// a "heavy" struct with lots of members
struct B {
  int key;
  // other members  
} 

class A {
  vector<B> bs;
}

I want to sort the bs by their keys. Now, a way I’ve done this in the past to avoid swapping Bs (since they’re rather heavy), is to define a vector of indices and sort the indices instead. This works if bs is not a class member.

e.g.

vector<B> bs;
vector<size_t> indices;

bool pred(size_t i, size_t j) { return bs[i] < bs[j]; }

indices.resize(bs.size());
for (size_t i = 0; i < bs.size(); i++) indices[i] = i;
std::sort(indices.begin(), indices.end(), pred);

However, when bs is a class member, this “technique” fails because the predicate can only take two parameters. In particular, there’s no way of passing “this”.

I can see three different ways to solve this problem:

  • Don’t bother with the indices. Just overload operator < to handle instances of B. This whole indices thing is just premature optimization 🙂
  • Have a global pointer to bs, set it before calling sort, and use it in pred.
  • Use closures. This would be pretty cool, except I’m not using C++11.

Is there any other way of doing this? Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T13:06:19+00:00Added an answer on June 6, 2026 at 1:06 pm

    Assuming that b is in class A and is accessible through a member function called get, you can write a functor like this:

    struct Comparator
    {
      Compartor(A& a): m_a(a){}
      bool operator()(int i, int j) const
      {
        return m_a.get(i) < m_a.get(j);
      }
    
     A& m_a;
    };
    

    And use it like this:

    A a;
    std::sort(indices.begin(), indices.end(), Comparator(a));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a scenario that looks like this: User A is a registered user.
I have a scenario outline table that looks like the following: Scenario Outline: Verify
I have a model that looks like this: public interface IEntity { int Id
In RavenDB, I have a document that looks like this: public class SystemNotification {
I have a DataGrid that looks like this (slightly simplified here): <asp:DataGrid ID=grdQuotas runat=server
I have an object model that looks like this (pseudo code): class Product {
Alright I have an xml document that looks something like this: <xml> <list> <partner>
I have seen example code that looks like this, which seems perfectly reasonable: [Authorize(Roles
I have a model that looks like this and stores data as key-value pairs.
I have a DOM situation that looks like this: A is an ancestor of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.