473,545 Members | 2,627 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

multiset example

I can't find a clear example showing me how to use multiset with a
custom compare function.
(like here: http://www.codeproject.com/vcpp/stl/setandmap.asp - I have
no idea why they have the 'struct gtrst', and why the set is than
initialized 'set<char gtstr*,> setString2')...

My problem is simple - I have a simple class

class CMember
{
int fitness;
int somedata[1000];
....
};

I want to have a multiset that keeps members sorted according to
fitness. How to do it in a simple, self-explaining way?
Jacek
Nov 8 '05 #1
2 12483
Hope this helps...
class CMember
{
private:
int fitness;
public:
CMember(int n)
{
fitness = n;
}

bool operator < (const CMember& refParam) const
{
return (this->fitness < refParam.fitnes s);
}
};
int main()
{
CMember o1(2), o2(3), o3(4);

multiset<CMembe r> myset;
myset.insert(o1 );
myset.insert(o2 );
myset.insert(o3 );
}

the trick is to override the < operator, which is used by stl for
comparing contents of a container

Nov 8 '05 #2
am***********@g mail.com wrote:
Hope this helps... the trick is to override the < operator, which is used by stl for
comparing contents of a container


Thanks, thats exactly what I was looking for.
Jacek
Nov 10 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1375
by: joeboatertx | last post by:
I have some simple C++ code I am trying to compile using VS.NET 2003. (Below) Every time I try to compile I get numerous C2784 errors. If I simply comment out both of the chores.insert() lines, the error goes away anf the program runs normally. I am using the insert function incorrectly? Error: c:\Program Files\Microsoft Visual Studio...
10
2889
by: Arthur J. O'Dwyer | last post by:
I'm seeing a bug at the moment that I can't track down. It's part of a moderately large program, but here is a small program that exhibits the bug on gcc. (The program code follows at the bottom of the message.) The symptom is this: % g++ --version g++ (GCC) 3.2.1 % g++ -W -Wall -pedantic test.cpp
3
1492
by: John Harrison | last post by:
If you insert equal values into a multiset is it specified what order they will have in the multiset. For instance, what should be the output of this program, is it defined? #include <set> #include <iostream> int main() { std::multiset<int> m;
5
2413
by: Dale Marchand | last post by:
I'm trying to use an object in two different multiset containers, each with it's own sort method. For the most frequently used, I overrode the operator< method in the class, and for the second I wrote a method LocationSort(). I can't seem to arrive upon the correct syntax for defining a multiset that will use LocationSort. ...
2
2168
by: =?iso-8859-1?q?Jo=E3o_Correia?= | last post by:
class CScore { public: int L; int C; CScore(int l, int c) { L = l; C = c;
9
3356
by: neil.johnston | last post by:
I have a cut down example program that uses multiset to order some data. The data arrives from various sources and has a time stamp, data with identical timestamps can arrive and due to fifo's and block sizes data from one source with a later time stamp may arrive before data from another source with and earlier time stamp. Looking at the...
2
1976
by: parvtb | last post by:
Thanks for your patience to read the entire post to understand my confusion I have the user-defined class "tools": class tools{ public: tools( ......) {} friend bool operator< (const tools& lhs, const tools& rhs) { cout<<"lhs="<<lhs.company<<"."<<lhs.name <<" rhs="<<rhs.company<<"."<<rhs.name<<endl;
4
2411
Digital Don
by: Digital Don | last post by:
Hi, I was looking at the MultiSet STL structure with some "less" keyword. I was told that we can use the "MultiSet" STL structure to automatically sort the content. Is it possible to store and Sort CLASS objects based on a class variable value in it . i.e. multiset <Event, less<Event> > _queue;
3
2284
by: orzeech | last post by:
Hi everyone! I have a following problem: #include<iostream> #include<set> using namespace std;
0
7496
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7428
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7941
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7784
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6014
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
5071
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
1
1916
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1039
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
738
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.