SortedList Represents a collection of key/value pairs that are sorted by the keys and are accessible by key and by index. The capacity of a SortedList object is the number of elements the SortedList can hold. Use this tag for questions related to SortedList.
0
votes
0answers
45 views
SortedList vs. KeyedCollection
I've been using SortedList(key,value) a lot lately, but I would like to know how it is different than KeyedCollection(key, value), except for the obvious sorting part.
For example, if I'm building a ...
1
vote
9answers
92 views
C# Sorted List by Value with Object
I'm trying to create an "ordered" cache of objects in C#, where the order is determined by how many times that has been accessed.
I've looked into Dictionary, SortedList and SortedDictionary which ...
0
votes
1answer
307 views
read txt file into a sorted linked list c++
just started to learn about linked list and have to make a OOP to read, sort, and display some file.
Here's the format of the txt file:
20
john
adam
george
.
.
.
the first number ...
0
votes
3answers
77 views
Improving Intersection Algorithm
I have a algorithm to build the intersection of two sorted lists. If I compare it with java.util.BitSet in a performance test, my algorithm is slow.
public static List<Integer> ...
0
votes
1answer
61 views
Sort SortedList based on value C#
I have a sorted list
private SortedList _slSorted = new SortedList();
_slSorted has value Field which is of type class (actually 2 classes alternately dumped into them) having all the properties ...
1
vote
2answers
49 views
Is ConcurrentDictionary, a “concurrent” version of SortedList?
I would like to understand the Computational Complexity of a ConcurrentDictionary vers SortedList (Which is O(logarithmic(n))), is a ConcurrentDictionary just a concurrent synchronized implementation ...
0
votes
3answers
99 views
How does insert and delete method of SortedList in Java work
This is more about my lack of ability to understand the SortedList Class. The ListNode I understand: it is a node made up of 2 things: A comparable object and a ListNode object which itself has the ...
0
votes
1answer
95 views
Add array data into a sortedlist
I'm trying to find a way where I can extend my extracted Array List into Sorted List? Here's the code I have below which displays the results horizontally based on each candidate, however I'm seeing ...
0
votes
3answers
40 views
how does searchsort in python work?
To make my question clear
say if I have an array a as
Out[123]: [1, 3, 4, 6, 9, 10, 54]
When I try to search the numbers in the list, searchsort returns correct value but when I try something not in ...
3
votes
1answer
100 views
deserealize into a generic sortedlist C#
I want to deserialize in a generic SortedList, just like this example with the hashtable
...
-1
votes
1answer
231 views
Getting the PropertyGrid CollectionEditor to work with Generic Sorted Lists
I have a C# Library project that is used just for data structures; some of the classes use SortedList like this:
SortedList<CustomItem1, CustomItem2> MySortedList;
I then have a separate ...
1
vote
2answers
61 views
Can't get an enumerator from a SortedList
I have this object :
class Animation
{
//[...]
private SortedList<int,Frame> frames = new SortedList<int,Frame>();
private IDictionaryEnumerator ...
3
votes
1answer
211 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 ...
4
votes
3answers
79 views
Duplicated Memory on .NET using two lists
I'm working on a small app on .NET, I need to point the same data with 2 diferent lists, I'm wondering if perhaps the memory is duplicated, for example
public class Person
{
public string name;
...
0
votes
0answers
291 views
To write a c# program that reads words from an input text file and writes a specific output text file
I would like to write a program that reads words from an input text file and writes an output text file containing lines each consisting of two comma separated values identifying the word and the ...
-3
votes
1answer
238 views
“An entry with the same key already exists” exception in sortedlist entry in c#
check the below function i m getting an exception when running the program like
"An entry with the same key already exists"
Inside the if condition. but i think there is no chance for the same key ...
3
votes
1answer
768 views
How to loop through a SortedList, getting both the key and the value
The following code loops through a list and gets the values, but how would I write a similar statement that gets both the keys and the values
foreach (string value in list.Values)
{
...
2
votes
2answers
271 views
How C# SortedList get key by value?
There is a SortedList
slLanguage = new SortedList();
slLanguage.Add("Bahasa","id-ID");
slLanguage.Add("Chinese Simplified(中文简体)","zh-CN");
slLanguage.Add("Chinese Traditional(中文繁體)","zh-TW");
...
0
votes
2answers
93 views
Inserting into a sorted list recursively
I need to write a method that inserts items into a singly linked sorted list recursively. The node class for the list looks like this:
protected class Node<T> {
protected Node(T data) {
...
1
vote
3answers
114 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 ...
0
votes
1answer
221 views
How to override SortedList Add method for sorting by value
I have a SortedList in my code. I fill inside it key value pairs. When I add an item to SortedList it sorts automatically by key. But i need to sort it by value. Because the values are visible texts ...
9
votes
3answers
411 views
C# fast way to check and then insert into a sortedlist
Whenever I want to insert into a SortedList, I check to see if the item exists, then I insert. Is this performing the same search twice? Once to see if the item is there and again to find where to ...
0
votes
0answers
184 views
How to make a class generic extends comparable and make a sorted list of its type?
I've made an ADT with Name ERS_ADT
And a class ERS implements ERS_ADT
inside the ERS I've declared a sortedListInterface < Employee>
when I try to compile the ERS_ADT this error occurs
...
2
votes
2answers
199 views
C# Merge Two SortedLists (Union?)
I'm looking to speed up a piece of code that merges two SortedLists.
C# 4.0 generic SortedList: http://msdn.microsoft.com/en-us/library/ms132319(v=vs.100).aspx
public Trait getTrait(decimal ...
1
vote
3answers
105 views
Efficient way to determine highest value (with or without offset)
I'm currently using a SortedList in a loop to sort some values in descending order:
for(...)
{
float rawValue;
float offset;
sortedList.Add(rawValue + offset, index);
}
I'm interested ...
3
votes
4answers
1k views
How to Sort Date in descending order From Arraylist Date in android?
I have an ArrayList which stores Dates and I sorted them in descending order. Now I want to display them in a ListView. This is what I did so far:
spndata.setOnItemSelectedListener(new ...
-2
votes
1answer
59 views
How to made Paging base on SortedList class
Hello i have method returned SortedList object
I need to do Paging
SortedList output = this.GetSearchResults(SearchQuery.QueryString, se);
ViewBag.ResultSearch = output;
How to make equivalent ...
2
votes
2answers
161 views
Improving Game Performance C#
We are all aware of the popular trend of MMO games. where players face each other live. However during gameplay there is a tremendous flow of SQL inserts and queries, as given below
There are ...
0
votes
1answer
179 views
Merge sorted lists into new list
So i need to write a program that merges two sorted lists into a new third sorted list and I can ONLY use operations of the ADT sorted list.
As with all my other assignments I start with pseudocode ...
0
votes
0answers
135 views
Adding to sortedlist in a parallel for loop error: ArgumentException was unhandled by user code error
items.AsParallel().ForAll(i =>
{
string[] splitter = i.Split('\t');
Console.WriteLine(string.Format("Converted: {0} - {1} - {2}", splitter[0], splitter[1], splitter[2]));
...
1
vote
3answers
299 views
Single Sorted Linked List - Infinite Loop
I'm working with a single linked list and I want to sort it from lower to higher values of integer. I though I had the idea but then the execution enters in a infinite loop and I can't see clearly ...
1
vote
1answer
111 views
Yii: How to make an active record behave like a CTypedList with other active records as list elements?
Let's say I have two AR classes: Deck and Card. Each deck record is supposed to be a sorted list of card records. When I fetch a deck record, I want to be able to treat it like a CTypedList:
$Deck = ...
0
votes
2answers
58 views
Creation of generic type relying on another type C#
I have a class which is defined as
public class SerializableList<TList, TValue> : IXmlSerializable where TList : IList<TValue>
The issue comes when trying to implement the constructor ...
0
votes
4answers
757 views
Inserting a random number into an array with sorted order C++
Hello I am trying to make an array that inserts a random number but when it does, the array stays in a maintained order. For example if the array contained 10 20 30 and the random number was 11 the ...
3
votes
2answers
139 views
Best data structure for maintaining a list of object-types sorted by frequency
So, I'm going through a long list with different types of things. Let's say that it has names of different kinds of foods. The list might look something like this:
olive
potato
strawberry
potato
...
0
votes
1answer
182 views
SortedList Performance - how does the sorted list sort itself?
I am trying to find out more details about the sorted list so that I can analyze whether it will perform like I need it to in several specific situations.
Does anyone know the specific sorting ...
2
votes
3answers
250 views
Why doesn't C# .NET SortedList<T1, T2> actually have ElementAt?
.NET Documentation for 3.5 Collections.Generic.SortedList
In the documentation, it plainly states that "ElementAt" is an extension method on SortedList members. Well, I've got one, declared thusly:
...
1
vote
2answers
134 views
Performance of SortedList.Last with predicate
I would like to find the value of the last item in a SortedList that is under a certain value. Since SortedList is implemented with something capable of binary searches, this is possible in O(log(n)).
...
0
votes
4answers
688 views
Using python 3 for recursive Boolean check if a list is sorted
I am trying to write a recursive function that does a Boolean check if a list is sorted. return true if list is sorted and false if not sorted. So far I am trying to understand if I have the 'base ...
1
vote
1answer
152 views
SortedList DataGridView Refresh?
I have a listed sortedlist that I bind to a datagridview. I'd like when I add items to the sortedlist to be displayed in the datagridview. I'm using a bindingsource.
I was able to find one reference ...
5
votes
2answers
176 views
Most pythonic way to find number index in a sorted list?
a = 132
b = [0, 10, 30, 60, 100, 150, 210, 280, 340, 480, 530]
I want to know a should be in the 4th position in orderedlist b.
What's the most pythonic way to do so?
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 ...
3
votes
1answer
119 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 ...
0
votes
2answers
244 views
Linked list - Remove method for Sorted List
New programmer here, I am trying to understand and break down this code below for a remove method, sorted linked list. I have added comments below for what my understand is and what i do not ...
2
votes
1answer
180 views
ceiling and floor in TreeMap java
I found myself using a TreeMap simply because I needed the capability of looking something up with the floorEntry() (and ceilingEntry()) methods. This obviously make the code a bit clumsy. So does ...
0
votes
3answers
105 views
C# - Automatically generating keys in a SortedList
I would like to create a SortedList with just keys of type Integer, but I'm finding it difficult to set them myself considering the nature of the code.
Is there any way for the list to generate the ...
-1
votes
2answers
282 views
sort sorted list as data table order
i fill sorted list from ordered datatable but after fill sorted list my order changing
for (int i = 0; i < d.Rows.Count; i++)
{
int EmpID = ...
1
vote
1answer
141 views
Using an ordered list in IndexedDB
I'm trying to learn the basics of IndexedDB by creating a trivial notepad application. I'm having difficulties using an ordered list in this environment.
The feature I'm not sure how to implement is ...
0
votes
3answers
556 views
Sorted list items
Is it possible to add items to sorted list with the same value, because when I am trying to do so it shows me an error:
"An entry with the same key already exists."
If it's possible, then how?
0
votes
2answers
49 views
search where new item goes inside sorted list
i'm trying to implement a search method, which returns a index of a object where it should be inserted in a sorted list, recursively.
Here is my attempt.
//listSize is the number of elements ...



