Tagged Questions
0
votes
1answer
47 views
Lightweight collection w/ Set contract
I'm developing in an application requiring lots of objects in memory. One of the largest structures is of the type
Map<String,Set<OwnObject>> (with Set as HashSet)
with OwnObject being ...
0
votes
0answers
31 views
Set and Set Operations in Javascript
I'm looking for Set and Set operations in Javascript for intersection, union and difference instead of having to write them manually. Here's equivalent Java code:
Set<Integer> toMerged = ...
1
vote
5answers
91 views
Why does TreeSet throws ClassCastException
In below code I am trying to add two employee object
Set<Employee> s = new TreeSet<Employee>();
s.add(new Employee(1001));
s.add(new Employee(1002));
But Result ...
4
votes
2answers
135 views
Difference between 2 collections? (elements in collection1, but not in collection2)
In Java (maybe using Guava?), is there some method provided to get the difference of two Collections, e.g. a List and a Set without modifying one of these Collections (else there would be ...
0
votes
3answers
313 views
Best way to convert list to comma separated string in java [duplicate]
I have Set<String> result & would like to convert it to comma separated string. My approach would be as shown below, but looking for other opinion as well.
List<String> slist = new ...
2
votes
1answer
65 views
Not-hash-based set collection for storing unique objects with custom equality comparer - C#
I'm trying to store (name: string, value: long) pair in a set.
public class NameValuePair
{
public string name;
public long value;
}
public NameValuePairComparer comparer = new ...
1
vote
1answer
76 views
Generic types and method declarations in Java Collections Framework [duplicate]
I have a question about the use of generic types in the Java Collections framework.
Here's a snippet of the Set interface taken from Oracle's Java Collections thread (found here):
public interface ...
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 ...
2
votes
1answer
131 views
java.util.Set implementation that does not use element.hashCode()
Is there a java.util.Set implementation that does not call an inserted element's hashCode() method?
I have to use some library's class whose hashCode() implementation is ill-behaving: when this ...
1
vote
4answers
102 views
JavaScript: Setting Nested object value by ID
I would like to know what is the best way to update the member of the multilevel object collection in JavaScript
Here is the simplified version of my collection:
this.Steps = [
{ id: 1, text: ...
1
vote
5answers
370 views
LinkedHashSet remove duplicates object
I have simple question to you, I have class Product that have fields like this:
private Integer id;
private String category;
private String symbol;
private String desc;
private Double price;
private ...
0
votes
1answer
40 views
Hibernate removal - Set replacement
I am removing Hibernate for a certain portion of our larger application where we have been seeing database contention and deadlocks that could never be isolated or recreated consistently.
...
1
vote
3answers
110 views
logical inconsistence between Set and SortedSet interfaces in Java [closed]
I noticed a logical inconsistence between Set and SortedSet interfaces in Java.
SortedSet recognizes different objects (by equal() method) as equals if they are the same during the comparison, but ...
0
votes
2answers
80 views
Flipping a set of blocks in Java
In my game that I am creating, I am using blocks. To simplify my life, I created a class that accepts an array of blocks, and adds them to the block set for me.
Block set (in World class):
...
2
votes
2answers
172 views
How to test if a Java iterator always uses the same order (reproducible ordering)?
I have a code in which for-each-loops on a Set need to rely on the fact that the iterator returns the elements always in the same order, e.g.
for(ParameterObject parameter : parameters) {
/* ... ...
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
51 views
got UnsupportedOperationException while modifying CopyOnWriteArraySet
Studying Java Generics and Collection book by By Maurice Naftalin, Philip Wadler, I left off at CopyOnWriteArraySet section, trying practice while studying to make it stick to my mind, But I faced a ...
1
vote
5answers
461 views
remove duplicate strings in a List in Java
Update:
I guess HashSet.add(Object obj) does not call contains. is there a way to implement what I want(remove dup strings ignore case using Set)?
Original question:
trying to remove dups from a list ...
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
2answers
172 views
addAll to Set is not adding the values in java
I have a property in an Object(Obj1)
Set<AssignedService> serviceList;
public Set<AssignedService> getServiceList();
I am doing the below operation in certain instances
...
2
votes
4answers
319 views
Java convert Set<Set<String>> to List<List<String>>
In Java I am having trouble converting from a Set<Set<String>> to a List<List<String>> and then populating this list with the contents of the Set<Set<String>>
Here ...
3
votes
2answers
58 views
Does Set Of Sets on contain method checks the order?
My concern is if the Set of Sets (HashSet s) checks the order of items as well.
I wrote the app that checks if the given Set of Integers exists in the Set of Sets of Integers
Somehow on one computer ...
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 ...
-6
votes
1answer
117 views
How to make Java Set [closed]
give me the answer please.
example
A {1,2,3}
B {1,4,5}
Code snippet:
a.intersect(b).print()
// Result 1 . twin between two object
a.merge(b).print()
// Result 1,2,3,4,5
Correct my assignment ...
1
vote
5answers
155 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
1answer
51 views
Intersection - Envelope
I have Envelope[][] extents = new Envelope[][]; construction. Each envelope has MinX, MaxX, MinY and MaxY properties and represents one tile of a grid (bottom-left and top-right point). Now I have ...
1
vote
1answer
108 views
Is there an alternative to NavigableSet when a “Set” is not appropriate?
The NavigableSet interface offers a number of useful methods that a normal Set does not (specifically I'm thinking about methods like headSet and tailSet for instance). However, being a Set, it does ...
0
votes
6answers
123 views
Java Set ordering
We all know that Set(Except their such implementation) doesn't guarantee of iteration ordering .So i tried to make sure this with below sample code .
public static void main(String[] args) throws ...
4
votes
1answer
308 views
Java partially ordered Collection<E>
I am looking for a Java implementation of a data structure which holds a collection of elements for which a partial ordering is defined, and which allows one to iterate over those elements in some ...
2
votes
1answer
58 views
When the Usual Set Class is Not Enough: A Weekend Warrior's Project [closed]
Rethinking Sets
Introduction
In C++, C#, Java, and Python, there are classes for defining an unordered collection of objects, set, HashSet, Set, and set respectively. The trouble with this idea is ...
2
votes
1answer
271 views
Unique Sets from collection of Sets
I do have int pairs, i.e; (int ,int)
1) Given k such pairs, check if they are unique. i.e; size of the Set formed using k pairs is k ?
2) if the given k records are unique then store them in ...
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
2answers
80 views
Convert two separate Sets to a 2D array
I have two Sets of Strings, with each in the following format:
Set1(Names) Set2(Sizes)
Pics 450 KB
Videos 50 MB
Music 32 MB
The two Sets are LinkedHashSets, so order is ...
2
votes
3answers
136 views
how to restrict default ordering of Hash Set in java
I have some of values in my java program. I just stored those values in HashSet. I have stored it by for loop. The values iterating by loop has been ordered differently after the set formed. How can ...
7
votes
1answer
318 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 ...
0
votes
3answers
55 views
Java Iterator value sustaination
I have a very basic java iterator scenario...in which am facing the below problem on finding the working of the iterator
Will the iterator logIterator have the same values in both the while loops,or ...
2
votes
2answers
209 views
Calculating the “distance” between two unordered sets
Assume two sets (unordered, no duplicate elements):
A = set(["z", "x", "c"])
B = set(["x", "z", "d", "e"])
These sets have two common elements: "z" and "x", and some set-specific elements: c, d, e.
...
-5
votes
1answer
144 views
how to store set of collection [closed]
can anybody explain how can I store set of data collection like this: <value1, value2, value3, value4> because "collection" or "hashmap" give us only two arguments like <value1, value2> ...
2
votes
2answers
84 views
C# Set of Objects Referenced by Class
What I want is a unique collection, or set, of objects referenced by their class. This set can only contain one object of a given class. Here is an example of some possible functionality:
class A;
...
0
votes
3answers
36 views
Set of template cals in java
I'm trying to create a Set that contains instances of 'Vertex3<T>'. I'm having a little bit of an issue with the line that creates the set:
public Set<Vertex3<Integer>> verticies = ...
0
votes
5answers
60 views
Will constructing a Collection using a Set retain the Set properties? (Java)
If I have code that looks like this:
Collection<Object> c = new HashSet<Object>();
will it still retain the properties that the collection will not be able to contain duplicate values. ...
-1
votes
4answers
704 views
Duplicate Value in Java Set
Java Set can't have a duplicate value. This is my code:
Set<String> set = new HashSet<String>();
Collections.addAll(set, arr);
If array arr have elements having the same value, set will ...
2
votes
4answers
685 views
Performance and Memory allocation comparision between List and Set
I want to know the comparison between List and Set in terms of performance,memory allocation and usability.
If i don't have any requirement of keeping the uniqueness in the list of objects, neither ...
2
votes
4answers
140 views
Equals() method is called on existing object or incoming object in collections
Can anyone please clarify when we check equality on collections, equals() method is called on incoming object or on those objects which are there in collection. for ex.
If a Set or a Hashmap has ...
3
votes
1answer
114 views
Contains on TreeSet versus another Set
Is the contains method on TreeSet (Since it is already sorted per default) faster than say HashSet?
The reason I ask is that Collections.binarySearch is quite fast if the List is sorted, so I am ...
2
votes
1answer
72 views
Transposing keys with lowest values of a map to a set
I have a map of word frequencies Map<String, Integer>. I need to make a set of the least occurring words. Say the lowest occurring words all appeared twice, I need to make a set of all these ...
5
votes
5answers
700 views
Python “set” with duplicate/repeated elements
Is there a standard way to represent a "set" that can contain duplicate elements.
As I understand it, a set has exactly one or zero of an element. I want functionality to have any number.
I am ...
3
votes
1answer
146 views
A Set of Sets with duplicate names?
I am in the process planning my next homework assignment, which is an anagram finder. I'm using java and would like to know if you can have a Set of Set's, where each Set have the same name currentSet ...
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 ...
2
votes
5answers
243 views
What are these properties of a data structure called?
If I have some arbitrary data structure, what can I say about this structure if the following scenarios hold:
(1) If I put five elements into a data structure, then it is possible to retrieve those ...




