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 7003163
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:01:45+00:00 2026-05-27T21:01:45+00:00

Question is about sorting std::vector<myclass> using function sort from STL’s algorithms class. Standard way

  • 0

Question is about sorting std::vector<myclass> using function sort from STL’s algorithms class.
Standard way is : sort(v.begin(), v.end(), &myfunct)
where myfunct is:

bool myfunct( myclass first, myclass second ) {   
    if (first.value < second.value)   
        return true;   
    else return false;   
}

Approach above takes more than one line. I am curious how to do it in one line. Is it possible define function that compares myclass objects inside sort function? May be somehow use this (a < b) ? a : b. I remember that there is something like this in C#, but I forgot how is it called. Is it possible to do in C++.

  • 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-05-27T21:01:46+00:00Added an answer on May 27, 2026 at 9:01 pm

    First, you can just return first.value < second.value but this doesn’t get rid of the function. In C++2011 you can use a lambda function:

       std::sort(begin, end, [](myclass const& f, myclass const& s){ return f.value < s.value; });
    

    Without C++2011 I think you’ll need a function object because there isn’t anything which projects your class to the value you actually want to compare.

    BTW, you definitely want to pass everything but the most trivial objects by reference to your comparison function.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This recent question about sorting randomly using C# got me thinking about the way
Question about GridView sorting in VB.NET: I have a GridView with AutoGenerateColumns = True
Question about subclassing in matlab, under the new class system. I've got class A
I have a question about the logic behind sorting and paging. Lets say you
This is not another question about 'How Can I Sort Dynamically (based on an
A while ago I asked a question about hierarchy/version number sorting in SQL Server.
Well, I asked a question about sorting few days ago. I found out how
There was a question asked about how to sort a List. There were several
This question ( LINQ and a natural sort order… ) talks about how to
Question about Eclipse RCP and whole perspective/view/editor design - what is the best way

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.