Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a 2d array of nullable ints (try guessing what exactly it's for).
From that, I want to get both the first and last non-null elements from the first and last rows each.

How do I do this?

class Foo
{
    int?[,] array = new int?[3,9]
    {
        { null ,   13 , 21   , null , null ,   52 ,   69 , 76 , null },
        {    9 ,   15 , null ,   36 ,   45 , null , null , 77 , null },
        { null , null , null ,   39 ,   48 ,   53 , null , 79 ,   87 },
    };
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

From that, I want to get both the first and last non-null elements from the first and last rows each.

2D arrays are a pain in the ass, but they behave like one long array if you iterate them

var w = array.GetLength(1);
var h = array.GetLength(0);
var a = array.Cast<int?>();

var ff = a.First(e => e.HasValue);
var fl = a.Take(w).Last(e => e.HasValue);
var lf = a.Skip((h-1)*w).First(e => e.HasValue);
var ll = a.Last(e => e.HasValue);

Width is 9, Height is 3, Casting turns it into an enumerable of int? which means your corners are the first non null, the last non null in the initial 9, the first non null after skipping 18 and the last non null


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...