简体   繁体   中英

how to count conditioned continuous values in a list with linq?

I've list like this:

var query = Enumerable.Range(0, 1440).Select((n, index) =>
{
    if ((index >= 480 && index <= 749) || (index >= 810 && index <= 999) || (index >= 1080 && index <= 1299))
        return 0;
    else if (index >= 750 && index <= 809)
        return 1;
    else
        return 2;
});

So, Can I find how much indexes have "0" value continuously and which are their indexes - even if interrupts by "1" (not 2) - ? For example;

query[480]=query[481]=query[482]....query[749] = 0, 
query[750]=query[751]...query[809] = 1, 
query[810]=query[811]....query[999] = 0, 
query[1000]?query[1001]...query[1079] = 2, 
query[1080]=query[1081]....query[1299] = 0, etc..

So, the answer is 270 (before 1) + 190 (after 1) = 460 Although between 1080 and 1299 indexes have 0, they should not be considered because previous values are "2".

How can I find their sum and indexes?

LINQ version as requested:

int groupCount = 0;
var result = query
    .Select((x, i) => new { Value = x, Index = i })
    .SkipWhile(x => x.Value != 0)                   // Skip until first 0 is reached
    .TakeWhile(x => x.Value == 0 || x.Value == 1)   // Take a continuous series of 0 and 1
    .Where(x => x.Value == 0)                       // Filter out the 1s
    .GroupBy(x =>
        // Treat as a new group if it's:
        // 1) the 1st element, or
        // 2) doesn't equal to previous number
        x.Index == 0 || x.Value != query.ElementAt(x.Index - 1)
            ? ++groupCount
            : groupCount)
    .Select(x => new
    {
        Count = x.Count(),
        Start = x.First().Index,
        End = x.Last().Index
    });

Result:

{ Count = 270, Start = 480, End = 749 }
{ Count = 190, Start = 810, End = 999 }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM