Tagged Questions
1
vote
3answers
81 views
Why is a set used instead of a map? C++
Sets are used to get information of an object by providing all the information, usually used to check if the data exists. A map is used to get the information of an object by using a key (single ...
2
votes
2answers
58 views
Associative container that allows specification of seperate comparator and ordering functor
I am looking for a container that allows me to specify separate functions for ordering and equivalence. std::set allows the specification of 1 comparator function.
Ideally I want to sort on a ...
1
vote
4answers
37 views
Serializing a Set to JSON the Wrong Way
I have a datatype I would like to serialize to JSON. The datatype contains a set of integers. It will be a pain to work with anything other than JSON (e.g., YAML) because of other constraints in the ...
0
votes
1answer
119 views
Convert Set<Map.Entry<K, V>> to HashMap<K, V>
At one point in my code, I created a Set<Map.Entry<K, V>> from a map. Now I want to recreate the same map form, so I want to convert the HashSet<Map.Entry<K, V>> back into a ...
-13
votes
0answers
93 views
Which is better set or map? (In c++) [closed]
Anyone knows which is faster or better anyway ?
std::map < int ,bool >
std::set < int >
0
votes
4answers
102 views
Return Key Based on Range of Values in a TreeSet within Map
First post here and I'm very new to Java (and programming in general)!
I'm trying to understand how to manipulate Maps when they contain other collections. I'm trying to write code to store names as ...
4
votes
3answers
124 views
How is std::set slower than std::map?
I was trying to solve this problem from acm.timus.ru which basically wants me to output the number of different substrings of a given string (max length 5000).
The solutions I am about to present ...
0
votes
2answers
39 views
Iterator in std::set containing std::map
How can I can gain access to a map which is stored in std::set? I need to do something like
for (iterator=map.begin(); iterator!=map.end(); iterator++) {
some_function(iterator->first);
}
, ...
-2
votes
1answer
44 views
how to print the value of map of this type map< map< set< int > ,int >, int> mymap[2]
i declared a stl map like this
map< map< set< int > ,int >, int> mymap[2]
and i declared iterators like this
set < int > ::iterator it3;
map< ...
-1
votes
7answers
125 views
JAVA: Given a Map <String, Set>, how do I fill the set given a string? [closed]
Keys: "apple", "orange", "grape", etc.
Each set will contain random numbers: 1, 2, 3, 4, 5, 6, 7, 8, 9
I need to create a Map (HashMap or TreeMap) that has Strings for keys and sets for the values. I ...
0
votes
1answer
101 views
Find set_difference between set and map keys
I would like to ask if it is possible to provide an example on how I can find the difference between a set and keys of a map using set_difference
I know that another question std::set_difference is ...
0
votes
3answers
72 views
storing keywords in set and reading them using maps Java
I created a file that contains a text.
I want to read specific words like "end", "so", and "because" using Set to store these keywords and using Map to display all the keywords and the number of ...
-2
votes
1answer
54 views
Reading specific keywords from a file using set and map in Java [closed]
I created a file that contains a text. I want to read specific words like "end", "so", and "because" using set to store these keywords and using map to display all the keywords and the number of times ...
0
votes
5answers
114 views
Multiple for loop on Java Set [duplicate]
I have a Map with values and get a Set using Map.keySet method.
In this code:
Map<String, String> map = new HashMap<>();
map.put("1", "a");
map.put("2", "b");
map.put("3", "c");
...
1
vote
3answers
73 views
Why do ConcurrentModificationException on a Java Set dump Stack Trace about Map iterator?
If I concurrently modify a Java Set, I'll get a ConcurrentModificationException. The problem is that the stack trace suggests the modification was encountered on a certain Map iterator. I now ...
0
votes
1answer
82 views
STL Set inside Map , weird seg fault and Valgrind analysis
I have a weird segmentation fault in my code which use following data structure :
map< uint64_t, set<uint64_t> > _key_to_block;
Valgrind complain of _key_to_block.erase(it) with this ...
-4
votes
3answers
50 views
Why won't this method throw a NullPointerException? [closed]
Basically, I am adding a name to a Map.
public static void addTo(Map<String, Set<String>> friends, String name1, String name2) {
if (!friends.containsKey(name1)) {
...
2
votes
2answers
167 views
C++ converting map<int, set<int> > into map<int, vector<int>>
I have to convert an std::map like this:
std::map<int, std::set<int> > t_contents;
in a map like this:
std::map<int, std::vector<int> > seq;
I am doing the conversion ...
0
votes
3answers
57 views
Best approach to find a key in more than 1 (multiple) 'std::map's or 'std::set's?
Will take std::map example with minimal data.
I have 2 maps as below:
map<string, Object*> map_ShortKey; // keys are single English words
map<string, Object*> map_LongKey; // keys are ...
-2
votes
1answer
178 views
Efficient use of std::map and std::set in c++ [closed]
To use vector efficiently we need to reserve the memory before setting the elements. But for map and set which are not contiguous containers how we can make them fast and efficient?
I have a ...
2
votes
6answers
118 views
What is the most efficient std container for non-duplicated items?
What is the most efficient way of adding non-repeated elements into STL container and what kind of container is the fastest? I have a large amount of data and I'm afraid each time I try to check if it ...
1
vote
1answer
38 views
Change element of a map that's key is not in set B
I'm sure this comes up often enough for it to be addressed somewhere, but I wasn't sure how to search for it any further.
I want to modify the values from map that's key is not in set B. What is ...
0
votes
1answer
62 views
Unexpected/undefined results when using Maps in Java
I'm doing some work trying to recommend documents, and to do so I am using the Cosine Similarity method. Here is the code for that method:
static double cosineSimilarity(HashMap<String, Double> ...
3
votes
2answers
104 views
How to join two nullable sets in Java
I have two maps that have a String as the key, and Set as its value. These two maps can share the same keys. I'm trying to merge the two Set values together if the two maps have the same key. The ...
4
votes
2answers
131 views
Memory-efficient dummy values in Haskell
If I have maps of keys to values then sets of keys can be implemented as maps of keys to fixed dummy values.
There are many candidates for dummies:
data-defined types without constructors
other ...
1
vote
1answer
82 views
Getting the key and its specific value from map
I am using Map as follows
Map<String, String> propMap = new LinkedHashMap<String, String>();
and I saw that there is two methods that I can use keySet() (to get the list of keys)
and ...
5
votes
4answers
98 views
How to make a set backed by a map?
There is a method in the Collections class.
Set<E> Collections.newSetFromMap(<backing map>)
What does it mean by the backing map and the set backed by a map?
0
votes
0answers
44 views
Persist a NavigableMap<DateTime,Entity> as Set<Entity>
I have two entities:
class Event {
@Type(type = "org.jadira.usertype.dateandtime.joda.PersistentDateTime")
DateTime date;
String message;
}
class AnsweringMachine {
@OneToMany
@MapKey(name ...
2
votes
2answers
83 views
Java putting set into map
Whats the quickest way to put a set into a map?
public class mySet<T>
{
private Map<T, Integer> map;
public mySet(Set<T> set)
{
Object[] array = ...
0
votes
3answers
165 views
Maximum size of std::size and std::map?
What is maximum size of std::size and std::map? And is there a way to increase this number?
Thanks!
3
votes
2answers
1k views
How to check in java if Set contains object with some string value?
I have Set of objects. Each object has String value.
I need to select all objects that have this value equal to "direction".
Is it possible without iterating over the set?
Thanks.
-4
votes
3answers
115 views
How to grasp Java Collections framework? [closed]
As we all know Java Collections Framework is very useful in Java programming .But it is really complicated .And also it cost a lot of energy and time to grasp the framework.I have learn JCF for a long ...
-1
votes
1answer
321 views
Copying keys and values from one map to another map [closed]
I'm trying to copy the keys and values from one map, map1, into another map, map2. The values in map 1 are stored in a set and map 2 should store map1's values in a list. The keys in each should map ...
4
votes
1answer
126 views
Check if map in C++ contains all the keys from another map
I am planning to use two maps in C++, of type: std::map<char, Node>, where Node is a custom class. Suppose I have two maps, m1 and m2 of the type above, I want to find out whether m1 contains ...
0
votes
2answers
44 views
Python - get subset from 2nd, to last element
I have a bunch of strings, all on one line, separated by a single space.
I would like to store these values in a map, with the first string as the key, and a set of the remaining values.
I am trying
...
1
vote
5answers
154 views
How to receive difference of maps in java?
I have two maps:
Map<String, Object> map1;
Map<String, Object> map2;
I need to receive difference between these maps. Does exist may be apache utils how to receive this difference?
For ...
0
votes
2answers
68 views
Storing information in java
I want to store information, String username, String password and String loginType.
When a login is attempted, I want to find if the username exists, then verify the password and return the ...
0
votes
1answer
55 views
Object without any content/empty Object
while developing I was trying to return an empty List.
public Collection<?> getElements() {
// return elements
}
I searched for an easy way, my first idea was to create for example an ...
0
votes
1answer
115 views
Boost ICL not working as expected, std::set operator+= expected
I'm trying to use Boost (1.51) ICL to simplify some interval searches.
Types:
SequenceI::shp_set is a std::set of shared pointers
types::mz_t is a Boost::Units quantity
...
1
vote
3answers
217 views
Thread safety of std:map and std:set [duplicate]
Possible Duplicate:
Do I need to protect read access to an STL container in a multithreading environment?
If some thread reading :set or :map when another thread writing to this set or map, ...
7
votes
1answer
315 views
C++ to Java: searching a collection efficiently
Coming from a mostly C++ background I am now writing some Java in anger. Something I find basic in C++ using the STL seems to be more cumbersome in Java than I think it should be. My conclusion is ...
1
vote
2answers
200 views
Mutable MultiMap to immutable Map
I create a MultiMap
val ms =
new collection.mutable.HashMap[String, collection.mutable.Set[String]]()
with collection.mutable.MultiMap[String, String]
which, after it has been populated with ...
0
votes
3answers
265 views
Are std::map and std::set thread-safe?
I have a question: Are std::map and std::set thread-safe? I use this collections on my multithread applications and sometimes map and set works worng.
Thanks!
upd. My code:
std::map<int, ...
2
votes
2answers
161 views
Obtaining generic key_type from C++ STL collections
I came up with the following code which demonstrates a technique for iterating generically over an STL collection and obtaining the key value regardless of how the key is stored.
The context of this ...
1
vote
2answers
573 views
how can I filter map entries based on set of entries
I'm using google guava 12 and have a map:
Map<OccupancyType, BigDecimal> roomPrice;
I have a Set:
Set<OccupancyType> policy;
How can I filter entries in the roomPrice map based on ...
9
votes
2answers
348 views
Is there a way to intersect/diff a std::map and a std::set?
I'm wondering if there a way to intersect or make the differences between two structures defined as std::set<MyData*> and std::map<MyData*, MyValue> with standard algorithms (like ...
2
votes
3answers
964 views
Java - Iterating over a Map which contains a List
First time here so I hope this makes sense!
I have a Map which contains a String as it's Key, and a List of Strings as it's Value. I need to iterate over all vlaues contained within each List within ...
2
votes
2answers
76 views
Capacity adapting Java collections
Are there any Java libraries for maps and sets that alter their representation strategy based upon the capacity? I have an application where we have many many maps and sets, but most of the time they ...
1
vote
4answers
5k views
Properties file with a list as the value for an individual key
For my program I want to read a key from a properties file and an associated List of values for the key.
Recently I was trying like that
public static Map<String,List<String>>categoryMap ...
2
votes
3answers
120 views
Why isn't there a simpler find function for associative std containers [closed]
Why isn't there a 'find' function in associative std containers (map, set, etc) that returns a boolean?
Say:
std::map <int,int> mMap;
...
if ( mMap.contains(75) ) ...
I know about the find() ...




