Tagged Questions
The sortedset tag has no wiki summary.
9
votes
2answers
2k views
Add to SortedSet<T> and its complexity
MSDN states the following SortedSet(T).Add Method :
If Count is less than the capacity of the internal array, this method is an O(1) operation.
Could someone please explain "how so"? I mean ...
7
votes
3answers
229 views
Convert List of Ints to a SortedSet in Scala
If I have a List of Ints like:
val myList = List(3,2,1,9)
what is the right/preferred way to create a SortedSet from a List or Seq of Ints, where the items are sorted from least to greatest?
If ...
6
votes
6answers
988 views
How to get the last 25 elements of a SortedSet?
In Java I have a SortedSet that may have 100,000 elements. I would like to efficiently and elegantly get the last 25 elements. I'm a bit puzzled.
To get the first 25 I'd iterate and stop after 25 ...
5
votes
4answers
143 views
C# SortedSet<T> and equality
I am a bit puzzled about the behaviour of SortedSet, see following example:
public class Blah
{
public double Value { get; private set; }
public Blah(double value)
{
Value = ...
5
votes
4answers
265 views
C# fastest union of 2 sets of sorted values
Possible Duplicate:
C# fastest intersection of 2 sets of sorted number
What is the fastest way to union 2 sets of sorted values? Speed (big-O) is important here; not clarity - assume this ...
4
votes
4answers
225 views
C# fastest intersection of 2 sets of sorted number
I'm calculating intersection of 2 sets of sorted numbers in a time-critical part of my application. This calculation is the biggest bottleneck of the whole application so I need to speed it up.
I've ...
3
votes
3answers
94 views
Limited SortedSet
i'm looking for an implementation of SortedSet with a limited number of elements. So if there are more elements added then the specified Maximum the comparator decides if to add the item and remove ...
3
votes
3answers
104 views
Replacing imperative PriorityQueue in my algorithm
I currently have a method that uses a scala.collection.mutable.PriorityQueue to combine elements in a certain order. For instance the code looks a bit like this:
def process[A : Ordering](as: ...
3
votes
2answers
264 views
Redis: Implement Weighted Directed Graph
What's the best way to implement weighted graph using Redis?
We will mostly search for shortest paths over the graph (probably using the Dijkstra algorithm)
Currently we considered adding the edges ...
3
votes
2answers
236 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 ...
2
votes
1answer
72 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
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
2answers
143 views
Redis: Is ZADD better than O(logN) when the inserted element is at the beginning or end?
The redis documentation for ZADD states the operation is O(log N).
However, does anyone know if ZADD is better than O(log N) when the inserted element is at the beginning or end of the sort order?
...
2
votes
1answer
204 views
How to find the index of an element in sorted set?
I can find an element in a sorted set (backed by BST) in O(logN). Now I would like the index of this element. For example, in set {1, 3, 4, 10}, the index of 4 is 2 and the index of 1 is 0.
...
2
votes
1answer
140 views
Efficiently accessing arbitrary subsets of a master sorted set in Redis
Given a large sorted set with rapidly changing scores/weights, what's the most efficient way to maintain subsets and access those subsets in the master set's order?
2
votes
3answers
171 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
4answers
493 views
How to get the next element of a SortedSet?
I have a SortedSet holding my ordered data.
I use the .first() method to return the first record, and pass it to another window.
When the other window finishes I get an event called, and I want to ...
1
vote
6answers
78 views
How to iterate over a SortedSet to modify items within
lets say I have an List. There is no problem to modify list's item in for loop:
for (int i = 0; i < list.size(); i++) { list.get(i).setId(i); }
But I have a SortedSet instead of list. How can I ...
1
vote
3answers
58 views
How can I get an exclusive tailset of a SortedSet?
I want to get an exclusive tail set of a SortedSet. The shortest method I can come up with is:
private void exclusiveTailSet(SortedSet<String> s, String start) {
System.out.println(s); // ...
1
vote
7answers
252 views
Java Program Design - Card Shuffler
I am trying to write a card shuffler, and I know the method by which I wish to shuffle the cards. However, I am at a loss of the best object-oriented way in which to write it.
The method, a rather ...
1
vote
1answer
88 views
SortedSet in Silverlight: looking for a memory- and time-efficient implementation
I am looking for a memory and performance efficient implementation of SortedSet<T> (corresponding to System.Collections.Generic.SortedSet<T> in vanilla .NET).
For the time being, I have ...
1
vote
2answers
96 views
Compressed SortedSet<Long> implementation
I need to store a large number of Long values in a SortedSet implementation in a space-efficient manner. I was considering bit-set implementations and discovered Javaewah. However, the API expects ...
1
vote
2answers
151 views
How to convert a SortedSet in Java to a Seq in Scala
The Jedis call I'm using returns a Set, although at runtime it is actually a LinkedHashSet. I want to pull it into Scala, deserialize the elements, and return a Seq.
1
vote
2answers
114 views
Problem with adding sorted number Strings to a SortedSet in Java
I created a my own SortedSet here is the code for adding something to the array. (I know there are better and simpler ways to do this than an Array but it has to be done this way)
public boolean ...
1
vote
3answers
113 views
Problem with adding item to array in an Ordered Set
I am having trouble adding an item to my array set, it should be ordered in ascending order and for some reason I just get to add it and it does not order it.
Here is my code:
public boolean ...
1
vote
3answers
221 views
Sorted container in Python
Is there a sorted container (like C++'s set and map) in Python? Is there a Python design decision (PEP) that precludes a sorted container from being added to Python?
1
vote
1answer
219 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
2answers
812 views
Redis: Sum of SCORES in Sorted Set
What's the best way to get the sum of SCORES in a Redis sorted set?
1
vote
1answer
301 views
What is the performance price of mapping a SortedSet in Hibernate?
In one of my mapped classes, I have a Set field mapped to the DB via hibernate. I now need this collection to be sorted according to some logic, which I wrote into a new Comparator implementation. I ...
1
vote
3answers
268 views
ConcurrentSkipListMap sorting: Can it be done by the value's compareTo?
In a game, I'm trying to keep a list of users and have it sorted by score, so that I could query the list at any given time and return (for example) the top ten users by score. This list should be ...
1
vote
2answers
1k views
Serialization issue with SortedSet, Arrays, an Serializable
I have this before the process:
protected void onPostExecute(SortedSet<RatedMessage> result) {
List<Object> list=Arrays.asList(result.toArray());
lancon.putExtra("results", ...
0
votes
2answers
76 views
Storing an Event Timeline in Redis
I'd like to store a list of events in a timeline in Redis. I'm thinking of a sorted set with seconds since 1970 as the score, allowing quick lookup and range searches.
The problem is I want each of ...
0
votes
4answers
63 views
SortedSet<TestClass> comparing on equality one field and sorting by another
Please review code:
/* Run1.java */
package test;
import java.util.Iterator;
import java.util.SortedSet;
import java.util.TreeSet;
public class Run1
{
static public void main(String[] args)
...
0
votes
7answers
78 views
Java Set source code.
Can anyone tell me where can I find source codes of Javas Set Collections? Or at least tell me how is for example SortedSet implemented?
I think I know how it's implemented, but I would like to see ...
0
votes
3answers
113 views
How to find the index of an element in a TreeSet?
I'm using a TreeSet<Integer> and I'd quite simply like to find the index of a number in the set. Is there a nice way to do this that actually makes use of the O(log(n)) complexity of binary ...
0
votes
1answer
228 views
SortedSet add confusion
When I run the code below only 8 of the 50 files in the directory get added.
The files are named like 0001, 0002, 0003, 0004, etc.
The files that get added are in this order: 7,0,1,2,3,4,5,6 ...
0
votes
1answer
64 views
How to get a SortedMap from a ContentQueryMap?
To cache a result of a Cursor, I use a ContentQueryMap.
The fact is that I think that for every ContentQueryMap I can get only a single column of the query... But I'm not sure about this.
Suppose ...
0
votes
1answer
272 views
Implement ZMOVE with WATCH in Redis
The Redis documentation on transactions gives an example of how to implement ZPOP. How do I implement ZMOVE for Redis sorted sets (analagous to SMOVE)?
0
votes
5answers
3k views
Java SortedSet + Comparator, consistency with equals() question
I'd like to have a SortedSet of Collections (Sets themselves, in this case, but not necessarily in general), that sorts by Collection size. This seems to violate the proscription to have the ...
-1
votes
1answer
535 views
SortedSet in Grails doesn't work
I want to use a SortedSet with Grails, but all I get is a MissingMethodException.
The class that contains the sorted set looks like this:
class SystemUser {
SortedSet organisations
// ... ...