The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
27 views

Numerical Format in SortedDictionary

I want to store large strings converted to decimals in a SortedDictionary (as the key) but they must fit a certain format...Due to the nature of sorting strings, they will not be placed correctly as a ...
0
votes
1answer
33 views

SortedDictionary 's Extension Method OrderByDescending is Not Available for Web Pages ASP.NET C#

I am trying to Sort the Items by Value in the SortedDictionary.. I had done that by mySortedDictionary.OrderByDescending(key => key.Value); it Returns the Sorted Key Value Pairs.. But in the same ...
0
votes
4answers
94 views

SortedDictionary<> or (Dictionary<> Manual Sort)

Is there a performance hit when I use SortedDictionary<> rather than Dictionary<> taking into consideration that I need a sorted Dictionary, so if I used a Dictionary, I would have to ...
3
votes
4answers
174 views

Is SortedDictionary a red-black tree?

I saw several quotes about this on the Internet but no official documentation? Can anyone tell me where I can get information about this?
0
votes
1answer
122 views

C# - How to find all items in SortedDictionary which have similar keys?

I have a SortedDictionary: static SortedDictionary<string, int> myDictionary = new SortedDictionary<string, int>(); where the keys represent strings something like that: string key = ...
0
votes
4answers
121 views

SortedDictionary in C#

I have a SortedDictionary where I am holding points of a particular player and his name next to it. What I need to do is to sort this in a descending order so that I have the winner in the first ...
1
vote
3answers
112 views

Why are sorted dictionaries and lists slower to add, delete, and get values than unsorted?

I made some tests with: SortedDictionary, SortedList, and Dictionary (just to compare). The results were that Dictionary was much faster than those two others in adding, deleting and returning values ...
4
votes
1answer
95 views

Thread increases processor usage gradually

I have a .NET thread which is allocated to core #7. The thread function is triggered once in 300ms. Initially it takes around 20-30 ms to execute one call. But this time increases gradually and ...
1
vote
2answers
419 views

C# SortedDictionary Reverse Order of Keys

I have the following dictionary: SortedDictionary<int, string> dictionary = new SortedDictionary<int, string>(); dictionary.add(2007, "test1"); dictionary.add(2008, "test2"); ...
2
votes
1answer
33 views

I would like to link values of one dictionary to keys in another

I have two .csv files containing information which I would like to link. I read each .csv file into a dictionary and named it as follows: Key Value Dictionary1 = ...
1
vote
1answer
105 views

How to get the first key larger than a specified key in SortedDictionary in O(log n)?

Say I have the following codes: SortedDictionary<int,string> test = new SortedDictionary<int, string> ( ); test.Add ( 1, "one" ); test.Add ( 3, "three" ); test.Add ( 7, "seven" ); ...
-5
votes
2answers
415 views

Sorting a SortedDictionary of <String,int> Alphabetically, reverse Alphabetically, and the value's frequency (C#)

I'm brand new to C# and the concept of hash tables/dictionary's and have been searching for a straight answer on this for quite awhile, but I can not find any solutions that actually works (likely due ...
0
votes
1answer
270 views

convert a dict to sorted dict in python

I want to convert a dict into sorted dict in python data = pandas.read_csv('D:\myfile.csv') for colname, dtype in data.dtypes.to_dict().iteritems(): if dtype == 'object': print colname ...
0
votes
1answer
128 views

WP7 SortedDictionary

I understand that SortedDictionary is not available in WP7...so have to sort it yourself. I have found a number of examples and am currently using this code Dictionary<string, TimetableClass> ...
-1
votes
1answer
82 views

SortedDictionary projection using linq

I have a SortedDictionary<double, List<int>>, I'm trying to iterate through it and grab every 5th element but I want to accumulate the other 4 elements' List members. Is it possible using ...
3
votes
2answers
159 views

Performance of First() vs Last() on a SortedDictionary

I'm using SortedDictionaries to simulate a Queue (due to some requirements that I have), and I'm calling Last() over the sorted dictionary to get the item that I need to dequeue. I was just wondering ...
2
votes
5answers
1k views

Find key with max value from SortedDictionary?

I have a SortedDictionary how do I find the key associated with the max value? Do I have to loop through every KeyValuePair?
1
vote
1answer
49 views

Indexing the ValuesView of a sorteddict

Given the documentation, what is wrong with the following code: import blist d = blist.sorteddict({3: "first", 7: "second"}) print(d.keys()[1]) print(d.values()[1]) print(d.items()[1]) which prints ...
0
votes
0answers
101 views

1 Million Item Sorted KeyValuePair with Binary Search and Prev/Next item

I have searched many list types to try and find one that satisfies two criteria.. The List must remain sorted. Before an insert the Item Before and After needs to be known. There is a probable ...
0
votes
1answer
687 views

Implementing iComparer for custom objects after converting a Dictionary to SortedDictionary

I'm having trouble implementing an IComparer method. Essentially, I want to compare the properties of two custom objects (the properties are of type integer). dE is a Dictionary(Of String, ...
0
votes
2answers
145 views

Can a custom GetHashcode implementation cause problems with Dictionary or Hashtable's “buckets”

I'm considering implementing my own custom hashcode for a given object... and use this as a key for my dictionary. Since it's possible (likely) that 2 objects will have the same hashcode, what ...
0
votes
2answers
810 views

SortedDict in Django

I have a dictionary with a list of times I want to display in a template: from django.utils.datastructures import SortedDict time_filter = SortedDict({ 0 : "Eternity", 15 : "15 Minutes", ...
1
vote
1answer
168 views

C# Sorting Objects By A Value

I want to hold a list of CollidableActor objects, sorted by their property ".Position.X". I am wondering on what would be the quickest (most efficient) method of doing this. At first I was thinking ...
0
votes
0answers
118 views

C# Dictionary + sort vs SortedDictionary [duplicate]

Possible Duplicate: SortedList vs. SortedDictionary vs. Sort() Why would you use SortedDictionary instead of Dictionary? If you need to sort the Dictionary you can always use LINQ to sort ...
2
votes
4answers
171 views

Python dictionary with lookup that returns an iterator

Something I miss about C++ std::map (which is a sorted dictionary) is that looking up a key returns an iterator pointing to the correct location in the map. This means you can lookup a key and then ...
4
votes
3answers
529 views

Python 2.6 TreeMap/SortedDictionary?

Is there a built-in sorted dictionary implementation in Python 2.6, or are hashtables the only kind? Clarifications: I'm asking about sorted dictionarys, not ordered dictionaries!
0
votes
2answers
511 views

Creating dictionary from a list of special characters

I'm working on this small script: basically it's mapping the list elements (with special characters in it) to its index to create a dictionary. #!/usr/bin/env python #-*- coding: latin-1 -*- ln1 = ...
5
votes
2answers
303 views

How to remove every second element of a SortedDictionary as fast as possible?

I've to remove every second element from a SortedDictionary as fast as possible. The dictionary (SortedDictionary<string, List<string>>) can have up to 20'000 elements. So I came up with ...
1
vote
1answer
150 views

C# SortedDictionary producing unusual results - Mk2

I don't think I posted enough detail in the previous question and people seemed to stop responding so I'm reposting as we need to know why this problem is happening I'm working with a ...
2
votes
5answers
167 views

In Python, how do you conserve grouping when you sort by one value and then another?

Data looks like this: Idx     score     group 5        0.85     Europe 8 ...
2
votes
4answers
611 views

C# SortedDictionary producing unusual results

I'm working with a SortedDictionary where the key is integer and value is string. SortedDictionary<int,string> dic = new SortedDictionary<int,string>(); Now say I add values like ...
2
votes
1answer
312 views

Implementation of Dictionary where equivalent contents are equal and return the same hash code regardless of order of insertion

I need to use Dictionary<long, string> collections that given two instances d1 and d2 where they each have the same KeyValuePair<long, string> contents, which could be inserted in any ...
0
votes
3answers
342 views

Get a key equal to an item from SortedDictionary?

Is there any way to retrieve a key from a SortedDictionary that is equal to a given object? To illustrate, lets say I create a dictionary that has a fairly memory-heavy, immutable key type: var ...
5
votes
2answers
238 views

Why does sortedDictionary need so much overhead?

long b = GC.GetTotalMemory(true); SortedDictionary<int, int> sd = new SortedDictionary<int, int>(); for (int i = 0; i < 10000; i++) { sd.Add(i, i+1); } long a = ...
1
vote
2answers
221 views

C# Datastructure with SortedDictionary() and node.Next() functionality?

How to construct/obtain a datastructure with the following capabilities: Stores (key,value) nodes, keys implement IComparable. Fast (log N) insertion and retrieval. Fast (log N) method to retrieve ...
4
votes
3answers
606 views

when should I use a sorteddictionary instead of a dictionary

As I wrote in some of my last posts I am still quite new to the c# world so it comes that I wrote small benchmark to compare Dictionary, Hashtable, SortedList and SortedDictionary against each other. ...
6
votes
3answers
538 views

When SortedDictionary is enumerated does it return KeyValuePairs in expected order?

When I have SortedDictionary<TK, TV> in .NET and I want to enumerate it as ICollection<KeyValuePair<TK, TV>> does it enumerate in expected order? That is KeyValuePair<TK, TV> ...
1
vote
5answers
779 views

How to find point between two keys in sorted dictionary

I have a sorted dictionary that contains measured data points as key/value pairs. To determine the value for a non-measured data point I want to extrapolate the value between two known keys using a ...
2
votes
3answers
1k views

Using SortedDictionary TakeWhile returns empty

The TakeWhile extension method has the following comment in its tooltip: "the element's index is used in the logic of the predicate function". Note that this tooltip is not visible in the normal ...
0
votes
2answers
834 views

Sorted Dictionary - C#

I'm trying to figure out how to create a sorted dictionary where the key is sorted in a non-alphabetical manner. Is there a way I can define the way I want it to sort? For example, the keys might be ...
4
votes
6answers
1k views

How do I get previous previous key from SortedDictionary?

I have dictionary contains key value pair. SortedDictionary<int,int> dictionary=new SortedDictionary<int,int>(); dictionary.Add(1,33); dictionary.Add(2,20); dictionary.Add(4,35); I want ...
0
votes
0answers
114 views

A quick way to map unordered list of longs to buffer location?

I have a large number of points (indexed by long) that are processed by multiple threads and I'm using a buffer to hold the output results in order. As the number of points processed is huge, what ...
2
votes
3answers
2k views

What's the equivalent to a .NET SortedDictionary, in Java?

If .NET has a SortedDictionary object ... what is this in Java, please? I also need to be able to retrieve an Enumeration (of elements), in the Java code .. so I can just iterate over all the keys. ...
2
votes
4answers
369 views

Is LINQ Where extension method optimized for SortedDictionary?

Folks, If I call the LINQ Where extension method, does it take advantage of the sorting in SortedDictionary or does it traverse each KVP and make the comparison? Is there an advantage to using ...
1
vote
3answers
324 views

What is Ruby (1.8.7) analog to SortedDictionary in C#/.NET?

I need to hold values in sorted hash in ruby (1.8.7). What data structed will fit the best?
2
votes
2answers
807 views

Most Efficient way to find the index of an item in a SortedDictionary

I am using a sorted dictionary to maintain a list of items, of which I regularly need to monitor the state of the top x items. Every time I update an item, I'd like a quick way of figuring out what ...
1
vote
2answers
305 views

How do I divide a list into groups and store the indices?

I have a list box which holds, say, 6 values. Using buttons it's possible to insert new items into the list box. I can move all of these items up and down using other buttons I've added. For the ...
4
votes
1answer
224 views

What's the easiest way to fill gaps in a list of numbers?

I'm having some trouble explaining the question in a single line for the title, but hopefully this description will provide you with enough insight to fully understand my question: I have a few ...
8
votes
6answers
2k views

LINQ into SortedList

I'm a complete LINQ newbie, so I don't know if my LINQ is incorrect for what I need to do or if my expectations of performance are too high. I've got a SortedList of objects, keyed by int; SortedList ...
3
votes
2answers
4k views

How to use custom IComparer for SortedDictionary?

I am having difficulties to use my custom IComparer for my SortedDictionary<>. The goal is to put email addresses in a specific format (firstnam.lastname@domain.com) as the key, and sort by last ...

1 2