I have a two-dimensional array (of Strings) which make up my data table (of rows and columns). I want to sort this array by any column. I tried to find an algorithm for doing this in C#, but have not been successful.
Any help is appreciated.
|
2
|
|||
|
|
|
Load your two-dimensional string array into an actual DataTable (System.Data.DataTable), and then use the DataTable object's Select() method to generate a sorted array of DataRow objects (or use a DataView for a similar effect).
You could also write your own method to sort a two-dimensional array. Both approaches would be useful learning experiences, but the DataTable approach would get you started on learning a better way of handling tables of data in a C# application. |
||||||
|
|
|
If you could get the data as a generic tuple when you read it in or retrieved it, it would be a lot easier; then you would just have to write a Sort function that compares the desired column of the tuple, and you have a single dimension array of tuples. |
||
|
|
|
|
Try this out. The basic strategy is to sort the particular column independently and remember the original row of the entry. The rest of the code will cycle through the sorted column data and swap out the rows in the array. The tricky part is remembing to update the original column as the swap portion will effectively alter the original column.
|
||
|
|
|
|
Can I check - do you mean a rectangular array ( It is quite easy to sort a jagged array; I have a discussion on that here. Obviously in this case the Sorting a rectangular array is trickier... I'd probably be tempted to copy the data out into either a rectangular array or a Here's an example using a jagged array:
For working with a rectangular array... well, here is some code to swap between the two on the fly...
|
||||
|
|
|
This code should do what you are after, I haven't generalised it for n by n, but that is straight forward. That said - I agree with MusiGenesis, using another object that is a little better suited to this (especially if you intend to do any sort of binding) (I found the code here)
|
||
|
|
|
|
So your array is structured like this (I'm gonna talk in pseudocode because my C#-fu is weak, but I hope you get the gist of what I'm saying)
So You want to sort by column, so the problem is that your array is off by 90 degrees. As a first cut, could you just rotate it?
If you know you only want to sort one column at a time, you could optimize this a lot by just extracting the data you want to sort:
In C++ you could play tricks with how to calculate offsets into the array (since you could treat your two-dimensional array as a one-d array) but I'm not sure how to do that in c#. |
||
|
|
|
|
Here is an article from Jim Mischel at InformIt that handles sorting for both rectangular and jagged multi-dimensional arrays. |
||||||
|