Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
611 views

Find top N elements in a Multiset from Google Collections?

A Google Collections Multiset is a set of elements each of which has a count (i.e. may be present multiple times). I can't tell you how many times I want to do the following Make a histogram ...
8
votes
4answers
354 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 ...
8
votes
3answers
239 views

Data structure for querying whether a given subset exists in a collection of sets

I'm trying to build a data structure for a word game solver. I need to store about 150,000 sets of the form {A, A, D, E, I, L, P, T, V, Y}. (They are normalized English words, i.e. characters sorted. ...
7
votes
4answers
844 views

Simplest way to iterate through a Multiset in the order of element frequency?

Consider this example which prints out some device type stats. ("DeviceType" is an enum with a dozenish values.) Multiset<DeviceType> histogram = getDeviceStats(); for (DeviceType type : ...
7
votes
4answers
476 views

Is there an algorithm to generate all unique circular permutations of a multiset?

I encountered this problem when doing some enthusiastic programming. The problem can be expressed as follows: For a multiset A, let P(A) denote the set of all possible permutations of A. P(A) ...
3
votes
5answers
95 views

Can you encode to less bits when you don't need to preserve order?

Say you have a List of 32-bit Integers and the same collection of 32-bit Integers in a Multiset (a set that allows duplicate members) Since Sets don't preserve order but List do, does this mean we ...
2
votes
2answers
42 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 ...
2
votes
3answers
70 views

In std::multiset is there a function or algorithm to erase just one 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
55 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 ...
2
votes
2answers
121 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
139 views

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

disclaimer first: I am a newbie in Java so this question might be naive on multiple counts. I have a multiset in guava and I would like to retrieve the number of instances of a given element without ...
2
votes
0answers
62 views

A multiset for a massively parallel system

I've been surfing the web today and I've went by the glassdoor.com website (a blogpost lead to it). While reading through it's section dedicated to Microsoft's interview questions for SDEs, I've saw ...
2
votes
3answers
119 views

Do STL iterators return const objects?

It's been a long time since we used STL so anyhelp would be appreciated. Not sure what we're doing wrong here... Given this, why does this code throw an error:"you cannot assign to a variable that is ...
2
votes
6answers
1k views

multiset & multimap - What's the point?

As the question states ... i don't get the point about multisets / multimaps. So, what's the purpose?
1
vote
1answer
83 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 ...
1
vote
2answers
136 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> ...
1
vote
1answer
125 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
vote
1answer
264 views

Oracle multiset, collection and records

Can anybody Explain me why records are required. Can't we perform the same operation in pl/sql using loop and all. Also when multiset, records query can be used i.e. in which type of situation and ...
1
vote
3answers
121 views

Multiset container appears to stop sorting

I would appreciate help debugging some strange behavior by a multiset container. Occasionally, the container appears to stop sorting. This is an infrequent error, apparent in only some simulations ...
1
vote
3answers
970 views

Are there any implementations of multiset for .Net?

I'm looking for a .Net implementation of a multiset. Can anyone recommend a good one? (A multiset, or bag, is a set that can have duplicate values, and on which you can do set operations: ...
1
vote
7answers
585 views

Java: get a unique property of an object (like hashcode, but collision proof)

I have a task for which it is necessary to generate a unique value for every object in a set. using the hashcode would be perfect, if collisions weren't allowed in the hashcode contract. One idea: ...
0
votes
2answers
72 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
148 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
142 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
53 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>(); ...
0
votes
1answer
100 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 ...
0
votes
3answers
135 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]; }
0
votes
2answers
198 views

Multinomial sets

I'm having a problem figuring out this problem, it is similar to combining sets of non-unique letters, but is slightly different. Let k, m, and n be positive integers. We have nm balls, m colors, n ...
0
votes
1answer
1k views

No default selected row in DevExpress WinForms GridView in multiselect mode

I have a WinForms DevExpress GridControl with single simple gridview in multiselect mode. There is no default selected row when it displayed first time. In singleselect mode all works fine. ...
0
votes
4answers
204 views

Multiset without Compare?

I want to use multiset to count some custom defined keys. The keys are not comparable numerically, comparing two keys does not mean anything, but their equality can be checked. I see that multiset ...
0
votes
3answers
293 views

GCC Tree STL data containers [closed]

Possible Duplicate: remove_if equivalent for std::map Yesterday i wrote a program, which use multiset for storing elements like this: std::multiset < boost::shared_ptr < CEntity > ...
0
votes
1answer
194 views

How to do binary search in a std::multiset without constructing a key_type object?

I have a container like this: // Sort functor struct SortByTime : std::binary_function<const TimeSortableData &, const TimeSortableData &, bool> { bool operator()(const ...
0
votes
4answers
91 views

Ensure multiset is reordered when objects change

I have a multiset with a custom predicate function, e.g multiset<MyClass *,MyCompFunc> where MyCompFunc looks at an attribute on the MyClass objects. During the progress of the application, the ...
0
votes
2answers
145 views

C++ Set Erase Entry Question

I encountered a problem here. I'm using C++ multiset. This is the test file. Score: 3-1 Ben Steven Score: 1-0 Ben Score: 0-0 Score: 1-1 Cole Score: 1-2 Ben I'm using while loop and ifstream ...
0
votes
2answers
325 views

Coordinating typedefs and structs in std::multiset (C++)

I'm not a professional programmer, so please don't hesitate to state the obvious. My goal is to use a std::multiset container (typedef EventMultiSet) called currentEvents to organize a list of ...