1
vote
2answers
64 views

What is the Time Complexity of size() for Sets in Java?

I know, it seems like a stupid question, you would expect that the time complexity of size() on any collection would be O(1) - but I'm finding that an "optimization" in my code which requires a call ...
0
votes
4answers
46 views

How can I take a Java Set of size X and break into X/Y Sets?

I have a Java Set (specifically HashSet). Suppose it has a size of 10k. How can I break it into 5 Sets each of size 2k?
2
votes
4answers
100 views

Why won't my HashSet allow me to add two of the same instance, if their equals() says they're false?

The documentation for HashSet.add says Adds the specified element to this set if it is not already present. More formally, adds the specified element e to this set if this set contains no element ...
0
votes
2answers
61 views

HashSet contains duplicate entries

A HashSet only stores values ones, when the equals method says that they're the same. Thats what I thought. But now i'm adding Elements to a HashSet where the equals method returns true and the size ...
1
vote
5answers
138 views

HashSet “cannot convert from element type Object to Integer” when expecting a HashSet of Integer

In the following code I expect pn.get(8).get(8) to return an array of Integers (in this example length of array is 1, but in my program it's longer). Instead I get an array of Objects. Can someone ...
1
vote
1answer
91 views

Remove a key in hashmap when the value's hashset is Empty

I have a hashmap that maps strings keys to hashsets values, and I want to remove a key from the hashmap when the hashmaps's hashset value is empty. I'm having trouble approaching this. Here's what ...
0
votes
1answer
68 views

HashSet contains copy of object

I have an object of class Point with members x and y. I want to check if a Point object is in my 'visited' HashSet, but when I check, I create a new object with the current values of x and y. Even if ...
1
vote
4answers
402 views

Remove duplicates from two hash set

In my case i have two hash sets one set contain friend's name and number and another set contain existing friend's name and number this data retrieved from db and stored into set how to compare and ...
8
votes
5answers
160 views

Why list throws ConcurrentModificationException but set do not throws ConcurrentModificationException?

I have below two java class import java.util.*; public class ArrayListTest032 { public static void main(String[] ar) { List<String> list = new ArrayList<String>(); ...
1
vote
2answers
60 views

Set vs DAWG for checking membership in dictionary in Python

I need to be able to quickly check if a given word is in my dictionary (English wordlist). I'm only concerned with speed of checking membership (not adding or removing elements), and memory use isn't ...
5
votes
3answers
125 views

Java HashSet with a custom equality criteria?

I was looking for something akin to the Java TreeSet's ability to receive a custom comparator at instantiation time, so I needed not to use the object's default equality (and hash code) criteria. The ...
0
votes
8answers
257 views

Getting unique elements of List

all I have list containing Duplicate values I want somehow to get only Unique values from it and store it another list or set.So that I can perform some operation on it. My code: { ...
0
votes
2answers
285 views

How do I store Set/HashSet in Object?

public HashSet<String> Red; public HashSet<String> Blue; public HashSet<String> Colors; public Data(HashSet<String> red, HashSet<String> blue, HashSet<String> ...
0
votes
3answers
180 views

Howto save HashSet<String> to .txt?

I want to store the HashSet to the server directory. But i'm now only been able to store it in .bin files. But how do I print all the Key's in the HashSet to a .txt file? static Set<String> ...
3
votes
2answers
106 views

Assigning one set to another and when Clear is performed.Both the sets are getting cleared

1.Initially created two sets. 2.Added elements to one set. 3.Assigned one set to another. 4.If clear is called on one set,both the sets are getting cleared. Can anyone help in figuring out the ...
3
votes
5answers
198 views

How this Set and Hashset and List combination working?

Can anyone please explain this code to me, I don't have much coding experience with Collections so I am having difficulties in understanding these LOC. String[] stringList ...
1
vote
4answers
251 views

how to insert into set without changing the equals and hashcode

I'm looking for a suggestion. I have a Person class with String firstName and String lastName When i'm tying to insert the list values with the same String like : set.add(new ...
2
votes
2answers
7k views

How to Iterate over a Set/HashSet without a Iterator?

How can iterate over a Set/Hashset without this? Iterator iter = set.iterator(); while (iter.hasNext()) { System.out.println(iter.next()); }
2
votes
2answers
255 views

Why do Set data structures in Java use Map internally?

I am wondering why do HashSet uses HashMap, TreeSet uses TreeMap, and LinkedHashSet uses LinkedHashMap internally behind the scene ? since Set is only carrying and storing the key but the value, so ...
1
vote
3answers
261 views

adding Integer objects to a hashSet

Consider the following code: 6. Set<Integer> set = new HashSet<Integer>(); 7. Integer i1 = 45; 8. Integer i2 = 46; 9. set.add(i1); 10. set.add(i1); 11. set.add(i2); ...
0
votes
1answer
532 views

creating object using new Operator in java

Here set s = new HashSet(); Here what does the new operator does exactly. Is that creates the object for the class Set or for the object for the constructors class HashSet. why we want to ...
8
votes
1answer
678 views

When does java.util.Set check for duplicates

I have a very basic question, when does java.util.Set checks if the objects being added are duplicates? Because I have a model class as below, which overrides both equals and hashcode methods public ...
3
votes
2answers
418 views

Java's HashSet equivalent in PHP

I'm relatively new to php and having a hard time figuring out the right data structure to use. Let's say I have a class FooBar with equals() and hashCode() properly implemented. What kind of ...
1
vote
4answers
124 views

How to select unique representatives from partitions of Java HashSet

I would like to know a way to implement a scenario that I am trying to do. I have a HashSet of Objects with Object having an attribute A of type int. Now, I want a representative from each of the ...
3
votes
3answers
390 views

Can i have HashSets as the keys in a HashMap? Suggest an alternative if not

Edit: explained the problem properly now. I have a hashmap where i want to store sets of words seen together (key) and the lines in which they were seen together(value). This is the structure i came ...
3
votes
5answers
138 views

Getting the reference to a duplicate in a Set

I have a Set object and I use this set to ensure that when I add an element to it that already exists in the set, it's not added. This is the easy part, just use Set.add(); But after this is done I ...
0
votes
1answer
487 views

Set is not working with overridden equals

I was trying to use set. so i tried this way HashSet set=new HashSet(); Points p1 = new Points(10, 20); Points p2 = new Points(10, 20); System.out.println(set.add(p1)); // output true ...
0
votes
0answers
184 views

Java & Flex : Cannot use Set or HashSet datas

I'm again asking a question about Flex and Java because when I try to use my datas in Flex, it's impossible ton have some of them. I have a file named Group.java, generated by hibernate, with some ...
1
vote
2answers
4k views

Is there a way to calculate the intersection of two sets? [duplicate]

Possible Duplicate: Efficiently finding the intersection of a variable number of sets of strings Say, have two Hashset, how to calculate the intersection of them? Set<String> s1 = ...
1
vote
4answers
743 views

Java Set gets duplicate entry

JavaDoc defines set as : A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1 and e2 such that e1.equals(e2) To verify the same, i created a ...
3
votes
1answer
238 views

SynchronizedSet and set operations in Scala

In REPL: import collection.mutable.{ HashSet, SynchronizedSet } var myPool = new HashSet[String] with SynchronizedSet[String] myPool += "oh" myPool += "yes" myPool = myPool.tail and I get: error: ...
1
vote
1answer
184 views

HashSet eclipse debugger variables

In Eclipse debugger variables's view , im looking at aHashSet and it has a map element which contains a KeySet and a Table but what puzzles me is that this table contains many null references in it , ...
2
votes
2answers
1k views

removing null references from a HashSet

is there a simple way of removing null references from a HashSet like the way we can delete them from a list using list.removeAll(Collections.singletonList(null)) ? thanks,
1
vote
1answer
891 views

Algorithm to find powerset of {1,2,3}

I think i'm finding this a little confusing because i've never really used Java sets. Could someone please try and show me (preferably by explaining how the powerset is gradually being created) in the ...
6
votes
1answer
966 views

The difference between 'HashSet' and 'Set' in Scala?

I'm very confused by Scala's HashSet and Set types as they both seem to do the same thing. What is the difference between them? Is it the same in Java? In my reference it says that HashSet is an ...
0
votes
2answers
932 views

How do I use hashset in actionscript

Right now I am using ArrayCollection. But I want to change that to Set as I want make sure do duplicate values come. var addressList:ArrayCollection = new ArrayCollection(); One way is I can ...
0
votes
0answers
888 views

Converting Hibernate's PersistentSet into CopyOnWriteArraySet

I am using CopyOnWriteArraySet in the following class because I simply like its thread-safe iterator. public class MyClass{ Set _children = new CopyOnWriteArraySet(); public void setChildren(Set ...
2
votes
2answers
112 views

Is there a way to recover objects from a set in the same order as passed?

I need to recover the elements of a java Set collection interface in the same order they were passed into the set. How is it possible in java
1
vote
2answers
11k views

What does the “Multiple markers” mean?

I am trying to use sets in the following way: static Set<String> languages = new HashSet<String>(); languages.add("en"); languages.add("de"); And I get the following error message ...
1
vote
5answers
327 views

What's the difference between theese two java variable declarations?

in java... public class someclass { private HashSet<Someobject> contents = new HashSet<Someobject>(); private Set<Someobject> contents2 = new HashSet<Someobject>(); } ...
1
vote
2answers
67 views

What's the best way to validate the values of a Set in a unit test?

Okay, often I'll have a method that returns a Set of some sort. The problem with unit testing such a method is that there is no guarantee an iteration over the set will always return the items in the ...
6
votes
5answers
9k views

What is the difference between set and hashset in C++ STL?

When should I choose one over the other. Are there any pointers that you would recommend for using the right STL containers.
2
votes
3answers
977 views

Can set_intersection be used with hash_set in C++?

I am calculating intersection, union and differences of sets. I have a typedef of my set type: typedef set<node_type> node_set; When it is replaced with typedef hash_set<node_type> ...
9
votes
7answers
4k views

Why have HashSet but not Set in C#?

Old question My understanding is that C# has in some sense HashSet and set types. I understand what HashSet is. But why set is a separate word? Why not every set is HashSet<Object>? New ...