Top "Multiset" questions

Anything related to multisets (a.k.a. bags), i.e. data structures that are generalizations of sets and in which an element can be present more than once.

workaround for ORA-03113: end-of-file on communication channel with CAST MULTISET

The call to TEST_FUNCTION below fails with "ORA-03113: end-of-file on communication channel". A workaround is presented in TEST_FUNCTION2. …

oracle function exception plsql multiset
Generating all combinations with repetition using MATLAB

How do I create all k-combinations with repetitions of a given set (also called k-multicombinations or multisubsets) using MATLAB? This …

matlab combinations combinatorics multiset
Initializing multiset with custom comparison function in C++

Consider following comparison function: bool compare(std::shared_ptr<myObject> &lhs, std::shared_ptr<myObject> &…

c++ decltype multiset
Multiset erase last element

I am trying to erase the last element of a multiset using: minheap.erase(minheap.rbegin()); It doesn't compile, and …

c++ multiset