In C#,
Array.Find<T>(arrayName, value);
searches a one dimensional array. Is there anyway to do this for a multidimensional array (e.g. myArray[,,])?
|
In C#,
searches a one dimensional array. Is there anyway to do this for a multidimensional array (e.g. |
||||
|
Working with Excel and VSTO, I deal with multidimensional arrays all the time. There are no built-in functions for multidimensional array like Array.Find(). You basically have two choices: create your own helper methods and implement a generic search pattern there, or generate a list of domain objects correlating to the contents of the multidimensional array. I personally have tended to choose the latter option. If you choose to write a helper method, it could look something (very roughly) like this:
You would refer to the static extension like this in other parts of your application code:
|
|||
|
|
|
There is no built in multi-dimensional search function. You'd have to write it yourself. |
|||
|
|
|
Flatten the multidimensional array and then use |
|||
O(dimension_1 * dimension_2 * ... * dimension_n)search more than a few times, you've propably done something very wrong when selecting algorithm and data structure. – delnan May 21 '11 at 21:59