The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
49 views

C++: use own class in a multiset container

at first I'm new here and English isn't my native language so apologize for any grammatical failures but I find this community really nice so I will try to ask my question as precise as I can. I want ...
1
vote
0answers
59 views

Writing a birthday calendar with a multiset of birthday objects but sorting isn't working

I am writing a birthday calendar with a multiset of birthday objects. My comparison function isn't sorting right and I can't search for a b-day by name. class CompareName { public: ...
1
vote
1answer
37 views

Distance between multiset iterator

Can we find the distance between two iterator in multiset with a complexity of less than O(n)? I tried to use the std::distance() function provided with iterator header. But its internal ...
0
votes
1answer
48 views

How to find the 2nd max of a Counter - Python

The max of a counter can be accessed as such: c = Counter() c['foo'] = 124123 c['bar'] = 43 c['foofro'] =5676 c['barbar'] = 234 # This only prints the max key print max(c), src_sense[max(c)] # print ...
1
vote
2answers
66 views

C++: insert tuple in multiset with std::function, and keeping an order

Quite simply, what's wrong with this piece of code? typedef std::function<double()> Event; typedef std::tuple <double, std::function<double()>> ...
2
votes
3answers
56 views

What's the cleanest way to turn a TraversableOnce[T] into a Multiset-like or Histogram-ish Map[T, Int]?

I want to convert a Traversable[T] to a Map[T, Int] histogram with counts. I'd like the result to be an immutable Map that matches what I would get by doing: ...
1
vote
1answer
115 views

implement a multiset/bag as Scala collection

Inspired by this question, I'd like to implement a Multiset in Scala. I'd like a MultiSet[A] to: Support adding, removing, union, intersection and difference Be an A => Int, providing the count ...
0
votes
2answers
71 views

Assign vector to multiset

Is there any good way for assigning std::vector to std::multiset? Other than iteration of course. I see that in C++11 there is something like initializer list, maybe it can be used somehow?
0
votes
2answers
103 views

Erase elements from STL multiset with iterator

I am maintaining a set of iterators of a multiset container in a separate data structure. After a while I pick one iterator from this data structure and then erase the associated element to that ...
3
votes
1answer
136 views

Iterating over unique elements of `std::multiset`

All I need is to know if something exists and how many times it exist. I will iterate over the existent things and query how much of that exists. My implementation so far uses multiset, I do as ...
1
vote
1answer
216 views

Are Multisets missing in Scala?

I was trying the Facebook Hacker Cup 2013 Qualification Problems in Scala, and for the 3rd problem I felt the need of an ordered Multiset but could not find one in scala's (2.10) collections. Is this ...
1
vote
2answers
190 views

Oracle, casting collection to type of existing table

Can I do somthing like this in Oracle 11g: select cast(multiset( select * from table_name) as table_name%TYPE) from dual; in plain sql, without pre-defining type? Is it supports something like ...
1
vote
2answers
59 views

c++ two priority sorting with multiset

I am trying to obtain a sorting of class objects according to two of its members in such a way: sort according to a member. If two objects have the same value (or if the difference is below some ...
0
votes
1answer
71 views

c++ multiset iterator sorting

I have a multiset mymulti where I sort according to a class member m_a. I want then to check for all sorted elements, if the difference in m_a for neighbouring fields of mymulti is less than my given ...
2
votes
2answers
77 views

Space-efficient way to store a multiset/unordered list

I need to store a large number of integers in a file. The order of the integers does not matter, so the total information content should be lower than that of an ordered list. Is there a more ...
7
votes
3answers
171 views

Moving elements out of an associative container

Just for fun, I have implemented the simplest sorting algorithm imaginable: template<typename Iterator> void treesort(Iterator begin, Iterator end) { typedef typename ...
1
vote
1answer
73 views

Quick select with repeat values

Is it possible to perform searching kth elment in O(n) over multiset (values can repeat)? Because as far as I understand the idea of quick select I have to partition input using some pivot. Then I ...
-2
votes
1answer
61 views

How to sort a multiset<string> alphabetically? [closed]

Here is a multiset containing a Value and String pair istream_iterator<string> i(f); ...
3
votes
0answers
629 views

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

The call to TEST_FUNCTION below fails with "ORA-03113: end-of-file on communication channel". A workaround is presented in TEST_FUNCTION2. I boiled down the code as my actual function is far more ...
2
votes
5answers
79 views

Why this multiset print code results forever loop?

I want to print out every duplicates from a multiset, but somehow iterators behave strangely for me. How can fix this code? This code results a forever loop, that surprise me. #include <set> ...
0
votes
1answer
376 views

multiset in c++

I have asked in another question about problem in multiset, but now I see I need a decent understanding and cannot find any more complicated example in the internet. can you explain me, maybe ...
0
votes
5answers
1k views

c++ map/set iterator not dereferencable

I want to ask you for a hint, as I am a beginner and couldn't find any suitable answer in the internet. I am getting this error: debug assertion failed - map/set iterator not dereferencable at the ...
0
votes
1answer
69 views

Does a multiset or bag offer better time complexity than a simple hash that keeps the counts of keys?

Java has multiset, and SmallTalk has a Bag class, and they are said to be the same function: keep a set of values but allow multiple values (with a count for each). But seems like multiset can be ...
0
votes
1answer
137 views

Guava Multiset and Multipmap [closed]

I am wondering which in better guava's multiset and multipmap Vs JDK's List and Map in terms of 1. time performance and 2. memory consumption could anyone explain about the time and memory ...
1
vote
2answers
100 views

Maintain insertion order for equal elements in std::multiset

I have a std::multiset of sorted custom objects. Two equal objects (based on the < operator) in the multiset may contain some fields which are not equal. In that case I need to maintain the order ...
0
votes
1answer
105 views

How to insert a pair using multiset in C++

I want to insert an integer value and a pair in a multiset. So I declared it as: multiset < int, pair < int, int> > mp; int m,n,p; To insert in multiset I tried this : ...
1
vote
1answer
202 views

A red black tree with the same key multiple times: store collections in the nodes or store them as multiple nodes?

Apparently you could do either, but the former is more common. Why would you choose the latter and how does it work? I read this: http://www.drdobbs.com/cpp/stls-red-black-trees/184410531; which ...
1
vote
2answers
74 views

Piped Set Operation in REDIS

Is it possible to compute multiset opeartion in redis using pipes i.e to say (a union b union c) intersect (d union c) SUNION a b c SINTER d c
2
votes
3answers
113 views

c++: Iterating through a multiset of vectors

I am attempting to print out all of the elements in each vector from a multiset of vectors. The build is failing but the error is occurring somewhere in a header file, I'm afraid I don't really ...
2
votes
2answers
320 views

Python list intersection with non unique items

I have two strings and I would like to have the intersection on them including duplicate items: str_a = "aabbcc" str_b = "aabd" list(set(str_a) & set(str_b)) >> "ab" I would like to have ...
2
votes
2answers
378 views

Why is the STL priority_queue not much faster than multiset in this case?

I am comparing performance of an STL (g++) priority_queue and found that push and pop are not as fast as I would expect. See the following code: #include <set> #include <queue> using ...
0
votes
1answer
136 views

Multiset of objects

I have multiset < Class1 > myset; so I create a new object: Class1* c1 = new Class1(); I was expecting to be able to myset.insert(c1) or myset.insert(new Class1()); but none of them work. class ...
0
votes
3answers
202 views

In Guava, how to create a Multiset with a single element and n occurrences

I'd like to create an (immutable) Multiset in Guava that has a single entry element with occurrences occurrences, both of which are not known at compile time. What I've come up with is this: ...
2
votes
3answers
366 views

Find disjoint sets in a table with nested table colum sql oracle

these are the sample data : CREATE OR REPLACE TYPE CourseList AS TABLE OF VARCHAR2(64); CREATE TABLE department ( courses CourseList) NESTED TABLE courses STORE AS courses_tab; INSERT INTO ...
2
votes
1answer
64 views

Is it possible to pass a constructor that takes an argument into a set in C++?

I was wondering if it was at all possible to pass a constructor that takes an argument to a comparison function into a set. For example something like this: class cmp { private: string ...
2
votes
2answers
205 views

Std::multiset, keep track of elements' positions inserted

Can I somehow overload any of std::multiset's operators (like you do with '()' to create a custom comapre function) so that when 2 elements in the multiset are swapped, so are another 2 elements from ...
11
votes
2answers
757 views

In std::multiset is there a function or algorithm to erase just one sample (unicate or duplicate) if an element is found

Perhaps this is a duplicate but I did not find anything searching: When erase(value) is called on std::multiset all elements with the value found are deleted. The only solution I could think of is: ...
2
votes
1answer
308 views

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 gives 4-5 erros. Note that in C++ multisets, .end() points next to the last ...
1
vote
2answers
345 views

Get first N elements in a C++ multiset

How can I get the first N elements from a multiset structure, without constantly getting the first (.begin()) element and then erasing it? I just want to sum the first N elements without affecting ...
0
votes
2answers
366 views

HashMap put or putAll? - Java

Putting Hashmaps by reference and putting hashmaps by copy. How do i do the latter? The other issue is the number of String[] types is not really pre-known, so creating multiple instances of ...
0
votes
1answer
689 views

How to iterate through Nested Map and Multiset? - Java/Guava

How should I iterate through a Nested Map with such declaration? Map<String, Multiset<String>> Please suggest if there are other hashmap/list that are more effective way of doing this ...
0
votes
1answer
163 views

Problems with add/remove/equals/string-method in MultiSet-class

This is my class: public class MultiSet<E> extends AbstractCollection<E> { private int size = 0; private Map<E, Integer> values = new HashMap<E, Integer>(); ...
1
vote
1answer
1k views

MultiSet: problems with add, remove and equals

i have some problems with some of my methods for my MultiSet class. This is a tester, and MultiSet class should get the output: "Succes!" if it works correctly. This is the tester: public class ...
0
votes
1answer
164 views

C++ dynamic array cleared when object returned

I'm currently working on an assignment (so I'd rather no post the full code) trying to implement a Bag abstract data type. Below is a method which I am currently trying to implement: template ...
1
vote
2answers
439 views

Guava: Access elements in TreeMultiset via position in expanded entrySet

Is there an efficient way to get the n upper entries from a sorted Multiset (TreeMultiset)? To specify what I mean I post my inefficient solution: public SortedMultiset<DataTuple> ...
2
votes
3answers
306 views

Find all combinations of a multiset in a string in linear time

You haven given a bag B (multiset) of characters with the size m and a string text S of size n. Is it possible to find all substrings that can be created by B (4!=24 combinations) in S in linear time ...
2
votes
2answers
226 views

get the number of instances of an element in a guava multiset without iterating

I have a multiset in guava and I would like to retrieve the number of instances of a given element without iterating over this multiset (I don't want to iterate because I assume that iterating takes ...
8
votes
4answers
624 views

Efficient hash code for multiset in Java

I have defined a subinterface of java.util.Collection that effectively is a multiset (aka bag). It may not contain null elements, although that's not crucial to my question. The equals contract ...
0
votes
3answers
473 views

How to print values in multiset?

How to access the values stored in the data structure multiset, C++? for (int i = 0; i < mlt.size; i++) { cout << mlt[i]; }
1
vote
1answer
257 views

Multiset to vector, C++

How to copy last k items from std::multiset in reversed order to std::vector as fast as possible?

1 2