The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
69 views

About SortedSet interface, java tutorial

Reading this Oracle tutorial I came across this explanation of the difference between the range-view operations of a List and the ones provided by the SortedSet interface. Here is the bit interested: ...
0
votes
0answers
57 views

C# DataReader ToLookup Conversion (with SortedSet)

I'm trying to get data from an Oracle database with a DataReader (as loading it into memory with a DataTable or DataSet is not a viable option at the moment). What I would then like to have is a ...
0
votes
0answers
56 views

Trying to measure how much time an insert takes in a database

I have a Multithreaded program which will insert into one of my table and that program I am running like this- java -jar CannedTest.jar 100 10000 which means: Number of threads is 100 Number ...
0
votes
1answer
165 views

REDIS/jedis update scores of all members in a sorted set

What's the best way to increment a medium size sorted set in REDIS? (Preferably with java driver JEDIS) Set has about 100-200K records in it. I want to increment their score by a given double number. ...
0
votes
1answer
58 views

Redis sorted set and solving ties

I'm using a Redis sorted set to store a ranking for a project I'm working on. We hadn't anticipated (!) how we wanted to handle ties. Redis sorts lexicographically the entries that have the same ...
0
votes
0answers
77 views

How to modify the items in bound ListBox's underlying collection and reflect those changes without rebinding and losing position

I have a ListBox bound to a SortedSet. There is a TextBox that allows the user to edit the name of the highlighted item in the ListBox. Modifying the TextBox should be immediately reflected in the ...
3
votes
1answer
201 views

SortedSet / SortedList with better LINQ performance?

Let's say we have a sorted collection such as SortedSet or SortedList with many (10M+) elements. Lots of querying is happening, so performance matters. From runtime comparisons, I'm under the ...
1
vote
3answers
109 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
3answers
215 views

SortedSet transform

I have the following case: SortedSet<MyClass> sortedSet = ...; SortedSet<HeavyToCompare> newSet = ...; for (MyClass m: sortedSet ){ newSet.add(m.getHeavyToCompare()) } I want to ...
0
votes
3answers
150 views

Writing a custom comparer for a core class in C#

I need to write a comparer for a core class in C#. I have a SortedSet<Vector2> and in order to iterate through it I need a basic comparer. Nothing fancy needed as I just need to access each ...
0
votes
4answers
107 views

Add a new element to a SortedSet

Can someone explain me why this code compiles and runs fine, despite the fact that SortedSet is an interface and not a concrete class: public static void main(String[] args) { Integer[] nums = ...
1
vote
3answers
53 views

Why doesn't cast to NavigableSet throw a ClassCastException?

keySet() returns java.util.Set. Why doesn't cast to NavigableSet throw a ClassCastException? This can be if real Object is a TreeSet with the java.util.Set reference. I can`t understand that. ...
0
votes
2answers
495 views

Java SortedSet add all

The following code creates a sorted set that sorts by its values rather thank keys. vertexRank is an object responsible for getting the value. Everything works well except the code: ...
0
votes
0answers
135 views

ordered sets in redis: random output in case of score ties

I have an ordered set in Redis (I am actually using a python client https://github.com/andymccurdy/redis-py), for example: zadd myset 1 key1 zadd myset 1 key2 zadd myset 1 key3 zadd myset 0 key4 ...
0
votes
1answer
59 views

Custom sort of a SortedSet in VB.Net

I have a sortedSet with following data: aga12 aga44 dp1 dp11 reg13 reg45 sat5 sat6 I would like this list to be sorted aphabetically but I want the dp values to be on top so like this: dp1 dp11 ...
1
vote
1answer
203 views

Redis Perl Library: how to use sorted sets?

I have a data structure in redis that uses sorted sets for a "top items" system that I plan to use on my webpage. I am basically using the redis-cli commands like ZRANGE to get my top items out of ...
0
votes
0answers
97 views

Change BinaryTree to sorted set implemented on a BinaryTree

I'm trying to implement a sorted set on a binarytree. I have the binary tree implementation on a doublelinked list. Now I'm having some trouble inserting the set functions. Than the sorted ones... ...
2
votes
1answer
223 views

Redis Data Structure Space Requirements

What is the difference in space between sorted sets and lists in redis? My guess is that sorted sets are some kind of balanced binary tree, and lists are a linked list. This means that on top of the ...
1
vote
1answer
394 views

Reverse Pagination Through A Redis Sorted Set

Consider a Redis sorted set with the following members: ZADD mySortedSet 11 "A" ZADD mySortedSet 21 "B" ZADD mySortedSet 32 "C" ZADD mySortedSet 46 "D" ZADD mySortedSet 53 "E" ZADD mySortedSet 68 "F" ...
2
votes
3answers
546 views

Can't I put a null in a SortedSet?

I thought that null is allowed for a Set. So why does the following code: SortedSet<Integer> set = new TreeSet<Integer>(); set.add(null); set.add(1); //--->Line indicated by ...
3
votes
1answer
112 views

How to implement persisted sorted list which is often updated and you need maintain the order

I need to display members of community which are sorted by last visit. There are millions of communities each of wich can have millions of members. The list should be scrollable. Because of sorting by ...
3
votes
5answers
456 views

Java Beginner: How to access a Hashmap of SortedSet entries?

I'm taking a java class and the instructor has had us build a HashMap like this: Map<String, SortedSet<Car>> makeSetMap = new HashMap<String, SortedSet<Car>>(); The Car ...
0
votes
3answers
190 views

Creating and array of E in Generic SortedSet

As a sample, I am developing a simple MySortedSet<E> in java which implements SortedSet<E> interface. It is backed up with a simple array which is E[] array. I have several questions ...
1
vote
3answers
576 views

SortedSet or sorted Collection

Assume an application producing a number of HashMap<String, MyClass> data structures, each containing dozens to hundreds of Comparable objects of type MyClass, which need to end up in a single ...
3
votes
1answer
249 views

Optimal way of creating a SortedSet from a number of HashMap objects

I have a number of HashMap data structures containing hundreds of Comparable objects (say, of type MyClass) and need to put all the values (not the keys) in a single data structure, and then sort it. ...
2
votes
4answers
563 views

How to create a sorted set with “field1 desc, field2 asc” order in Redis?

I am trying to build leaderboards in Redis and be able to get top X scores and retrieve a rank of user Y. Sorted lists in Redis look like an easy fit except for one problem - I need scores to be ...
0
votes
3answers
122 views

SortedHashTable in c#

What I am trying to do is to implement a heuristic approach to NP complete problem: I have a list of objects (matches) each has a double score. I am taking the first element in the list sorted by the ...
2
votes
1answer
524 views

Redis: Is it possible sort ordered set result with same score by other key value

ZADD myset 1 ad1 ZADD myset 1 ad2 SET order:ad1 1 SET order:ad2 2 How to sort firstly by ordered set score then the order value?
0
votes
1answer
442 views

Java Sorted Set of Maps converted to an array

I have these two data structures: public TreeMap<String, Integer> tableFrequency; public SortedSet<Map.Entry<String, Integer>> sortedTable; sortedTable holds ...
43
votes
1answer
1k views

Why SortedSet<T>.GetViewBetween isn't O(log N)?

In .NET 4.0+, a class SortedSet<T> has a method called GetViewBetween(l, r), which returns an interface view on a tree part containing all the values between the two specified. Given that ...
0
votes
3answers
108 views

Keeping a SortedSet of objects based on a property

I have an object, Test, that has two properties, double x and double y. I want to add these objects to a SortedSet, keeping the set sorted in ASC order on x of Test. If two instances of Test have the ...
0
votes
3answers
72 views

Looking to create and add sample data into a sorted set using CompareTo

I would like to create a sorted set with some sample data using CompareTo. Can you provide some sample coding on how to do this?
1
vote
2answers
369 views

Data structure in .NET that stores items as sorted and unique and queryable by range (and is not SortedSet)

The scenario is a timeline of events, that I want to be able to query for all items within a specific date range. I am looking for a data structure in .NET (up to v4.0) that stores items as sorted ...
7
votes
2answers
321 views

How to convert a list or vector into a sorted-set in Clojure?

In Clojure, the set function automatically converts a vector or list into a set. But this is not the case for sorted-set: (set [3 2 1]) ; #{1 2 3} (set '(3 2 1)) ; #{1 2 3} (sorted-set [3 2 1]) ; ...
1
vote
1answer
758 views

Redis CPU performance on sorted sets

we are running redis and doing hundreds of increments per second of keys in a sorted set, and at the same time doing thousands of reads on the sorted set every second as well. This seems to be ...
1
vote
1answer
2k views

Redis sorted sets and best way to store uids

I have data consisting of user_ids and tags of these user ids. The user_ids occur multiple times and have pre-specified number of tags (500) however that might change in the feature. What must be ...
1
vote
2answers
445 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 ...
7
votes
3answers
1k 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 = ...
3
votes
3answers
515 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 ...
2
votes
6answers
1k 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 ...
3
votes
1answer
410 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 ...
0
votes
4answers
357 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) ...
1
vote
4answers
214 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
543 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 ...
4
votes
4answers
3k 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 ...
1
vote
7answers
1k 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
252 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
291 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 ...
2
votes
3answers
244 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 ...
5
votes
4answers
672 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 ...

1 2