c# Programming Glossary: sortedset
When to use a HashTable http://stackoverflow.com/questions/3061182/when-to-use-a-hashtable blog post about which collection structure to use at SortedSets Basically what you want to do with the collection determines.. by a key adding removing elements quickly using a key Use SortedSet if you want to access a collection in a predefined order most..
ServiceStack.Net Redis: Storing Related Objects vs. Related Object Ids http://stackoverflow.com/questions/8914349/servicestack-net-redis-storing-related-objects-vs-related-object-ids a concept of related entities Redis's built in Set and SortedSet data structures provide the ideal way to store indexes. E.g...
Why SortedSet<T>.GetViewBetween isn't O(log N)? http://stackoverflow.com/questions/9850975/why-sortedsett-getviewbetween-isnt-olog-n SortedSet T .GetViewBetween isn't O log N In .NET 4.0 a class 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.. all the values between the two specified. Given that SortedSet T is implemented as a red black tree I naturally expect it to..
|