Tagged Questions
The treeset tag has no wiki summary.
32
votes
8answers
19k views
Hashset vs Treeset
I've always loved trees, that nice O(n*lg(n)) and the tidyness of them. However, every software engineer I've ever known has asked me pointedly why I would use a treeset. From a CS background, I don't ...
7
votes
3answers
2k views
In TreeSet, Sorting & Uniqueness of custom objects based on different properties
Below is my Student class
class Student implements Comparable {
String name;
int rollNo;
@Override
public int compareTo(Object obj) {
return ...
7
votes
5answers
3k views
What are the pros and cons of a TreeSet
Just wondering what the pros and cons of a TreeSet is, if anyone could tell me please? Thanks!
6
votes
5answers
147 views
How to return the kth element in TreeSet in Java
Maybe I am not using the right data structure. I need to use a set, but also want to efficiently return the kth smallest element. Can TreeSet in java do this? There seems no built-in method of TreeSet ...
6
votes
4answers
138 views
Why does Java's TreeSet<E> remove(Object) not take an E
From the Java 6 TreeSet<E> Documentation:
boolean remove(Object o):
Removes the specified element from this set if it is present.
Why does this accept an Object instead of the generic ...
5
votes
11answers
581 views
Comparator and equals()
Suppose I need TreeSet with elements sorted with some domain logic. By this logic it doesn't meter order of some elements that doesn't equal so compare method can return 0, but in this case I couldn't ...
5
votes
4answers
530 views
Why does Java's TreeSet not specify that its type parameter must extend Comparable?
e.g. The code below throws a ClassCastException when the second Object is added to the TreeSet. Couldn't TreeSet have been written so that the type parameter can only be a Comparable type? i.e. ...
4
votes
3answers
105 views
Keeping mutable objects sorted in TreeSets at all times
It came to my notice that a TreeSet doesn't keep the mutable objects in sorted order if object attribute values are changed later on. For example,
public class Wrap {
static ...
4
votes
3answers
462 views
When do you know when to use a TreeSet or LinkedList?
What are the advantages of each structure?
In my program I will be performing these steps and I was wondering which data structure above I should be using:
Taking in an unsorted array and
adding ...
4
votes
3answers
255 views
TreeSet and equals function
There is a Java bean object which has implemented equals function based on certain criteria (Criteria A). I have a requirement to identify unique objects based on another criteria (Criteria B). Since ...
4
votes
3answers
599 views
Treeset.contains() problem
So I've been struggling with a problem for a while now, figured I might as well ask for help here.
I'm adding Ticket objects to a TreeSet, Ticket implements Comparable and has overridden equals(), ...
4
votes
2answers
553 views
What is the time complexity of TreeSet iteration?
In my code, Java TreeSet iteration is the dominant time factor. In looking at the system I believe that it is O(n) complexity. Can anyone verify this?
I am thinking that by providing links backward ...
4
votes
2answers
619 views
Why scala's TreeSet returns SortedSet
Is there a reason that the object TreeSet.apply method returns SortedSet and not TreeSet?
The following code won't compile in scala 2.7
val t:TreeSet[Int] = TreeSet(1,2,3)
4
votes
3answers
3k views
Treeset to order elements in descending order
Here is the piece of code that I have used for Java 5.0
TreeSet<Integer> treeSetObj = new TreeSet<Integer>( Collections.reverseOrder() ) ;
Collections.reverseOrder() is used to obtain a ...
3
votes
4answers
698 views
Why doesn't TreeSet.contains() work?
public class Empty {
public static void main( String[] args ) {
TreeSet<Class> classes = new TreeSet<Class>();
classes.add( String.class );
String test = new ...
3
votes
2answers
233 views
How to add to SortedSet items from an Array?
I have a SortedSet defined this way:
SortedSet<RatedMessage> messageCollection = new TreeSet<RatedMessage>(new Comp());
and I have an array of RatedMessage[]
I had to use the array as ...
3
votes
4answers
545 views
Java's TreeSet equivalent in Python?
I recently came across some Java code that simply put some strings into a Java TreeSet, implemented a distance based comparator for it, and then made its merry way into the sunset to compute a given ...
3
votes
4answers
2k views
Java - TreeSet and hashCode()
I have a quick question about TreeSets and hashCodes. I have a TreeSet and I'm adding objects to it, before I add an object, I check to see if it exists in the TreeSet using the contains method.
I ...
2
votes
2answers
23 views
TreeSet comparator based on mutable attribute
My problem is very basic, but I have no clue how to solve it correctly. I have a TreeSet which uses a comparator based on the name of the entity. However, I can change that name. How do I force a ...
2
votes
1answer
69 views
SortedSet for integers with GNU trove
I'm migrating some code over to GNU trove for performance reasons.
However, I do have some TreeSets, where I need rather fast update and lookups along with a sorted iteration - the primary use case ...
2
votes
4answers
109 views
How can I use a custom class in a TreeSet?
If I was using a Set similar to this:
Set<node> s=new TreeSet<node>();
class node {
private int x;
private int y;
}
Would this be acceptable, and since it's a TreeSet, would it ...
2
votes
3answers
97 views
What's a more efficient alternative than converting a SortedSet to a Vector in Java?
I'm writing a contact book application in Java. The Contacts are displayed on a JList which uses a Sorted TreeSet list model.
I've added a search field and I've added a key listener to it. With each ...
2
votes
4answers
320 views
Remove duplicate objects from a ArrayList in Android
I know this has be discussed over and over again here, but none of the examples I've tried worked for me.
What I've got
I access the Call log from Android and I get a list of all calls made. Of ...
2
votes
5answers
236 views
Java Comparator for InetSocketAddress
I need to write Comparator for InetSocketAddress so I can use this class in a TreeSet. They need to be comparable by address and port.
The code would look something like this, but the problem is I ...
2
votes
1answer
162 views
Android dictionary TreeSet faster load time
I have like 300000 words in my dictionary (actually saved in txt format (new line delimited) on sdcard of my Android device).
I want to build data structure that would take as less time as possible to ...
2
votes
3answers
561 views
java TreeSet - don't remove duplicate items
TreeSet removes different items with the same Comprator value. I don't want it be removed.
Is there any way to control this? Or use another container class?
Added:
OK. It seems I can't use Set.
I ...
2
votes
5answers
1k views
Returning an element from a TreeSet using binary search
In TreeSet there is a method called contains that returns true if an element is in the set. I assume that this method uses binary search and does not iterate through all the elements in ascending ...
2
votes
2answers
172 views
Sorted sets and comparators
I'm working with a TreeSetthat is meant to store pathfind locations used during the execution of a A* algorithm.
Basically until there are "open" elements (still to be exhaustively visited) the ...
2
votes
5answers
205 views
Why can we supply a Comparator to TreeSet but not something like Hasher to HashSet?
In Java 6, my understanding is that you can supply a Comparator to a TreeSet when creating it to override the "natural ordering" of the objects in the set.
Do you have any thoughts why Java doesn't ...
2
votes
3answers
169 views
Trimming a sorted set
I have a SortedSet (specifically a TreeSet) containing updates. An update is something like an SVN commit, Facebook wall post, new Trac ticket, etc. I'm storing these in a SortedSet because:
Sorted: ...
2
votes
2answers
182 views
Ranking elements in TreeSet
I know a java treeset can't have identical elements and so I have to somehow differentiate an element from another even if they have the same "value". I want to be able to rank the elements and I'm ...
2
votes
3answers
861 views
1
vote
1answer
48 views
TreeSet Custom Comparator Algo .. String Comparision
From the input string provided
{ "200,400,7,1", "100,0,1,1", "200,200,3,1", "0,400,11,1",
"407,308,5,1","100,600,9,1" } ,
I am adding the same in a TreeSet and want it to be sorted with the ...
1
vote
3answers
64 views
Map.keySet() Query
It is a old code and am debugging it.
I have a Map (myMap) with size 2 (for sure). Keys are null and 1.
SortedSet mySet = new TreeSet();
mySet.addAll(myMap.keySet());
Iterator mySetIterator = ...
1
vote
1answer
56 views
Get a Boolean value for whether an Object partially matches (Java)
I think this is an easy question, if I could figure out search terms to describe it. It's similar to Java: Finding objects in collections except I just want a Boolean "is it there" result.
Say I have ...
1
vote
2answers
80 views
Searching for a record in a TreeSet on the fly
I'm writing a contact book application in Java using the swing and awt libraries. The Application consists of a JList which uses a TreeSet as an abstractListModel.
The TreeSet is for a class called ...
1
vote
2answers
82 views
Error when adding HashMap values to TreeSet
Here is some sample code...I always seem to get a ClassCastException...anybody point out what I am doing wrong?
package com.query;
import java.util.ArrayList;
import ...
1
vote
4answers
259 views
TreeSet contains method doesn't work for me
I want to put the custom's data into a TreeSet. When the custom number is same, I add the volume of trade.
Here is my TradeNode class that implements the Comparable Interator.
import ...
1
vote
2answers
77 views
Shortest way to fill a (Tree)Set with Integers?
if I want to make a (Tree)Set and fill it with 2000 Integers. To start with 0 then add 1,2,3,4...2000. Whats the best way?
I could do
Set set = new TreeSet<Integer>();
set.add(0);
...
1
vote
2answers
173 views
Problem with compareTo and TreeSet
I'm having a problem with TreeSets removing a unit from a game I'm working on. I'm making a tower defense game and the path is broken up into different blocks of a set length. The blocks know the ...
1
vote
4answers
202 views
Accessing elements in a treeset
I am attempting some very basic java here and have reached a bit of a head scratcher. Essentially,I need to read some element from a file into some type of array or list, sort them, eliminate ...
1
vote
2answers
169 views
Most Efficient Way to Check File for List of Words
I just had a homework assignment that wanted me to add all the Java keywords to a HashSet. Then read in a .java file, and count how many times any keyword appeared in the .java file.
The route I ...
1
vote
1answer
217 views
How to assign an order for TreeSet in Scala without repeating myself
I have this segment of Scala code which defines an ordering and applies it to a TreeSet. This part compiles fine.
val acctOrdering = new Ordering[Account] {
def compare(acc1: Account, acc2: ...
1
vote
4answers
103 views
cant sort the following tree map
for (a = 0; a < filename; a++) {
Map<Double,String> m = new HashMap<Double,String>();
String pre = "abc";
String post = ".txt";
for (int ii = 0; ii < 11; ii++) {
...
1
vote
3answers
300 views
What is the time complexity of ordered operations in TreeSet?
What is the time complexity of the following operations in java.util.TreeSet?
first()
last()
lower()
higher()
I would assume that these are constant time but the API makes no guarantees.
1
vote
3answers
411 views
Java TreeSet contains() gives false results
I am trying to code a little bit of math with java. What I am trying to do, is to put cyclotomic cosets to the TreeSet. A coset has an index and a set of integer numbers. A coset is equal to other ...
1
vote
3answers
263 views
How to find the rank of an element in a TreeSet
I know you can find the first and last elements in a treeset. What if I wanted to know what the second or third element was without iterating? Or, more preferable, given an element, figure out it's ...
1
vote
0answers
335 views
Using TreeSet contains() in Java with Integers
import java.io.*;
import java.util.*;
class StepfordHouses {
private ArrayList<Integer> houses; // A list containing houses
private TreeSet<Integer> ordered; // An ordered ...
1
vote
1answer
143 views
At what level is a given element in a Java TreeSet?
Does anybody know a fast way to detect at what level a given element is in a TreeSet? By level, I mean the depth of this element in the tree, i.e. the number of its ancestors.
Background.
I use ...
1
vote
4answers
644 views
Computational complexity of TreeSet operations in Java?
I am trying to clear up some things regarding complexity in some of the operations of TreeSet. On the javadoc it says:
"This implementation provides
guaranteed log(n) time cost for the
basic ...