I am writing a program to set a sequence in which various objects will appear in report. The sequence is the Y position (cell) on Excel spreadsheet.

A demo part of code is below. What I want to accomplish is to have a collection, which will allow me to add multiple objects and I can get a sorted collection based on the sequence

SortedList list = new SortedList();

Header h = new Header();
h.XPos = 1;
h.name = "Header_1";
list.Add(h.XPos, h);

h = new Header();
h.XPos = 1;
h.name = "Header_2";
list.Add(h.XPos, h);

I know that the SortedList will not allow this and I have been searching for alternate. I don't want to eliminate the duplicates and already tried List<KeyValuePair<int, object>>.

Thanks.

link|improve this question

62% accept rate
1  
Does the collection need to support inserts / removals after it is given the initial list of members? – Ani Apr 19 '11 at 12:38
2  
What didn't work when you tried List? – diceguyd30 Apr 19 '11 at 12:44
I dont want just sorting and get the object. But rather I want to get the entire sorted list. So in example below, both the Header objects should exists and in sequence one below other. If I add another Header object with XPos=2, I should then have 3 objects in the list, 2 objects with XPos=1 and third as XPos=2 – Mayur Kotlikar Apr 20 '11 at 5:00
feedback

5 Answers

Did you try Lookup<TKey, TElement> that will allow duplicate keys http://msdn.microsoft.com/en-us/library/bb460184.aspx

link|improve this answer
Thanks. My problem is the objects will not be only of one type (just not Header), those can vary (lets say Footer,Sidebar etc) but each will have XPos – Mayur Kotlikar Apr 20 '11 at 5:06
Also, there is no public constructor on Lookup I believe. Any good way around this? – Jeff Bridgman Dec 2 '11 at 22:59
feedback

You can safely use List<> . The List has a Sort method , an overload of which accepts IComparer. You can create your own sorter class as . Here's an example :

private List<Curve> Curves;
this.Curves.Sort(new CurveSorter());

public class CurveSorter : IComparer<Curve>
{
    public int Compare(Curve c1, Curve c2)
    {
        return c2.CreationTime.CompareTo(c1.CreationTime);
    }
}
link|improve this answer
I dont want just sorting and get the object. But rather I want to get the entire sorted list. So in example below, both the Header objects should exists and in sequence one below other. If I add another Header object with XPos=2, I should then have 3 objects in the list, 2 objects with XPos=1 and third as XPos=2 – Mayur Kotlikar Apr 20 '11 at 5:04
all right you mean to say, that the very time an element is inserted in the list, it should be inserted in the correct position as per the sort. Please correct me if wrong. Let me have a look, will get back in short moment – Dipti Mehta Apr 20 '11 at 5:17
feedback

The problem is that you use something as key that isn't a key (cause it occurs multiple times).

So if you have real coordinates you should maybe take the Point as the key for your SortedList.

Or you create a List<List<Header>> where your first list index defines the x-position and the inner list index the y-position (or vice versa if you like).

link|improve this answer
feedback
up vote 0 down vote accepted

Thanks a lot for your help. While searching more, I found this solution. (Available in Stackoverflow.com in other question)

First, I created a class which would encapsulate my objects for classes (Headers,Footer etc)

public class MyPosition
{
    public int Position { get; set; }
    public object MyObjects{ get; set; }
}

So this class is supposed to hold on the objects, and PosX of each object goes as int Position

List<MyPosition> Sequence= new List<MyPosition>();
Sequence.Add(new MyPosition() { Position = 1, Headerobject });
Sequence.Add(new MyPosition() { Position = 2, Headerobject1 });
Sequence.Add(new MyPosition() { Position = 1, Footer });

League.Sort((PosA, PosB) => PosA.Position.CompareTo(PosB.Position));

What eventually I get is the sorted "Sequence" list.

link|improve this answer
feedback

Use the generic, strongly typed SortedList<Key,Value>

link|improve this answer
3  
SortedList<Key,Value> does not allow duplicate keys. msdn.microsoft.com/en-us/library/ms132330.aspx – Jim Mischel Apr 19 '11 at 13:20
Thanks for correcting me, Sorry I didn't realise this, teaches me for typing and not thinking/looking. – James Harris Apr 19 '11 at 13:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.