multiset-empty

////////////////////////////////////////
//      2018/04/30 8:54:15
//      multiset-empty

// true if multiset is empty
#include <iostream>
#include <set>

using namespace std;

void print(multiset<int, less<int>>& s){
    multiset<int, less<int>>::iterator it;
    for (it = s.begin(); it != s.end(); it++){
        cout << *it << " ";
    }
    cout << endl;
}

//==========================

int main(){
    int ary[] = { 1, 2, 3, 2, 3, 4, 8, 2, 5, 6 };
    multiset<int, less<int>> s;

    s.insert(ary, ary + 10);
    print(s);

    cout << "multiset s is " << (s.empty() ? "" : "not ") << "empty." << endl;
    s.clear();

    cout << "multiset s is " << (s.empty() ? "" : "not") << "empty." << endl;

    return 0;
}

/*
OUTPUT:
    1 2 2 2 3 3 4 5 6 8
    multiset s is not empty.
    multiset s is empty.
*/ 
原文地址:https://www.cnblogs.com/laohaozi/p/12537875.html