Top "Sortedlist" questions

SortedList Represents a collection of key/value pairs that are sorted by the keys and are accessible by key and by index.

.NET / C# - Convert List to a SortedList

What is the best way to convert a List to SortedList? Any good way to do it without cycling through …

c# .net list lambda sortedlist
What is the SortedList<T> working with RecyclerView.Adapter?

Android Support Library 22.1 was released yesterday. Many new features were added into the v4 support library and v7, among which …

android android-appcompat android-recyclerview sortedlist
C# Sorted list: How to get the next element?

I'm wondering how to get the next element in a C# sorted list. SO far I've come up with the …

c# sortedlist
How to compare generic nodes in a linked list using Comparable?

I am implementing a sorted list using linked lists. My node class looks like this public class Node<E&…

java generics priority-queue sortedlist
SortedList vs. SortedDictionary vs. Sort()

This is a continuation of questions like this one. Are there any guidelines for tweaking the performance? I don't mean …

.net performance sorting sortedlist sorteddictionary
How to find an index at which a new item can be inserted into sorted list and keep it sorted?

a = 132 b = [0, 10, 30, 60, 100, 150, 210, 280, 340, 480, 530] I want to know that a should be in the 6th position in ordered list b. What's the …

python sortedlist
Is there a Lower Bound function on a SortedList<K ,V>?

Is there a Lower Bound function on a SortedList<K ,V>? The function should return the first element …

c# .net sortedlist
Why is there no SortedList<T> in .NET?

Why is there only a SortedList<TKey, TValue> which looks more like a dictionary, but no SortedList<…

.net sortedlist base-class-library
JavaFX sort ListView

I have a ListView in my application and I want to sort the entries. I also want the list to …

listview sorting javafx sortedlist observablelist