mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 09:11:55 +00:00
8552ac617c
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@1 67975925-1194-0748-b3d5-c16f83f1a3a1
40 lines
969 B
C++
40 lines
969 B
C++
// STLport regression testsuite component.
|
|
// To compile as a separate example, please #define MAIN.
|
|
|
|
#include <iostream>
|
|
#include <set>
|
|
#include <functional>
|
|
|
|
#ifdef MAIN
|
|
#define mset1_test main
|
|
#endif
|
|
|
|
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
|
using namespace std;
|
|
#endif
|
|
|
|
typedef multiset<int, less<int> > mset;
|
|
|
|
int mset1_test(int, char**)
|
|
{
|
|
cout<<"Results of mset1_test:"<<endl;
|
|
mset s;
|
|
cout << "count(42) = " << s.count(42) << endl;
|
|
s.insert(42);
|
|
cout << "count(42) = " << s.count(42) << endl;
|
|
s.insert(42);
|
|
cout << "count(42) = " << s.count(42) << endl;
|
|
mset::iterator i = s.find(40);
|
|
if(i == s.end())
|
|
cout << "40 Not found" << endl;
|
|
else
|
|
cout << "Found " << *i << endl;
|
|
i = s.find(42);
|
|
if(i == s.end())
|
|
cout << "Not found" << endl;
|
|
else
|
|
cout << "Found " << *i << endl;
|
|
int count = s.erase(42);
|
|
cout << "Erased " << count << " instances" << endl;
|
|
return 0;
|
|
}
|