Advertisement
Guest User

Untitled

a guest
Sep 15th, 2013
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. [0] [1] [2]
  2. [3] [4] [5]
  3. [6] [7] [8]
  4.  
  5. public static Tuple<int, int> CoordinatesOf<T>(this T[,] matrix, T value)
  6. {
  7. int w = matrix.GetLength(0); // width
  8. int h = matrix.GetLength(1); // height
  9.  
  10. for (int x = 0; x < w; ++x)
  11. {
  12. for (int y = 0; y < h; ++y)
  13. {
  14. if (matrix[x, y].Equals(value))
  15. return Tuple.Create(x, y);
  16. }
  17. }
  18.  
  19. return Tuple.Create(-1, -1);
  20. }
  21.  
  22. public static class Tools
  23. {
  24. public static int[] FindIndex(this Array haystack, object needle)
  25. {
  26. if (haystack.Rank == 1)
  27. return new[] { Array.IndexOf(haystack, needle) };
  28.  
  29. var found = haystack.OfType<object>()
  30. .Select((v, i) => new { v, i })
  31. .FirstOrDefault(s => s.v.Equals(needle));
  32. if (found == null)
  33. throw new Exception("needle not found in set");
  34.  
  35. var indexes = new int[haystack.Rank];
  36. var last = found.i;
  37. var lastLength = Enumerable.Range(0, haystack.Rank)
  38. .Aggregate(1,
  39. (a, v) => a * haystack.GetLength(v));
  40. for (var rank =0; rank < haystack.Rank; rank++)
  41. {
  42. lastLength = lastLength / haystack.GetLength(rank);
  43. var value = last / lastLength;
  44. last -= value * lastLength;
  45.  
  46. var index = value + haystack.GetLowerBound(rank);
  47. if (index > haystack.GetUpperBound(rank))
  48. throw new IndexOutOfRangeException();
  49. indexes[rank] = index;
  50. }
  51.  
  52. return indexes;
  53. }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement