Javaの8ストリーム、どのように実行時例外をスローせずに減らすまたはコレクトで「ブレイク」に?

ウラジーミル・ナボコフ:

この質問はの文脈で求められていますforEach

コメント(答えが受け入れられた後):私は@nullpointerの答えを受け入れたが、それは私のコード例のコンテキストではなく、削減のブレー​​ク能力に関する一般的な質問には正しいものです。..

質問:

しかし、中に方法があるreduceかでcollect途中で「ブレイク」には、すべてのストリーム要素を経由せずに、?(手段Iが状態を蓄積する必要があることを反復は、私は使用している間reduce又はcollect)。

要するに:私は2つの隣接要素にすべてのストリームの要素(要素は整数であり、小規模から大規模まで注文した)が、外観を反復処理し、それらを比較し、その差が1より大きい場合、私は "「休憩」と停止する必要がある必要状態を「蓄積し、私は最後渡された要素を返す必要が。

投げるバリアントRuntimeException私のために悪い-外部の状態を渡すとバリアントを。

コメント付きのコード例:

public class Solution {

public int solution(int[] A) {

    Supplier<int[]> supplier = new Supplier<int[]>() {
        @Override
        public int[] get() {
            //the array describes the accumulated state:
            //first element in the array , if set > 0, means  - the result is achieved, we can stop iterate over the rest elements
            //second element in the array will represent the "previous element" while iterating the stream
            return new int[]{0, 0};
        }
    };

    //the array in accumulator describes the accumulated state:
    //first element in the array , if set > 0, means  - the result is achieved, we can stop iterate over the rest elements
    //second element in the array will represent the "previous element" while iterating the stream
    ObjIntConsumer<int[]> accumulator = new ObjIntConsumer<int[]>() {
        @Override
        public void accept(int[] sett, int value) {
            if (sett[0] > 0) {
                ;//do nothing, result is set
            } else {
                if (sett[1] > 0) {//previous element exists
                    if (sett[1] + 1 < value) {
                        sett[0] = sett[1] + 1;
                    } else {
                        sett[1] = value;
                    }
                } else {
                    sett[1] = value;
                }
            }
        }
    };

    BiConsumer<int[], int[]> combiner = new BiConsumer<int[], int[]>() {
        @Override
        public void accept(int[] sett1, int[] sett2) {
            System.out.println("Combiner is not used, we are in sequence");
        }
    };

    int result[] = Arrays.stream(A).sorted().filter(value -> value > 0).collect(supplier, accumulator, combiner);
    return result[0];
}


/**
 * We have an input array
 * We need order it, filter out all elements that <=0 (to have only positive)
 * We need find a first minimal integer that does not exist in the array
 * In this example it is 5
 * Because 4,6,16,32,67 positive integers array is having 5 like a minimum that not in the array (between 4 and 6)
 *
 * @param args
 */
public static void main(String[] args) {
    int[] a = new int[]{-2, 4, 6, 16, -7, 0, 0, 0, 32, 67};
    Solution s = new Solution();
    System.out.println("The value is " + s.solution(a));
}

}

また:

入力として配列を考えると、あなたはこのような何かを探している私には思えます。

int stateStream(int[] arr) {
    return IntStream.range(0, arr.length - 1)
            .filter(i -> arr[i + 1] - arr[i] > 1) // your condition
            .mapToObj(i -> arr[i])
            .findFirst() // first such occurrence
            .map(i -> i + 1) // to add 1 to the point where the cehck actually failed
            .orElse(0); // some default value
}

あるいは最初から、あなたのようにソートとフィルタ値のリストに変換しながら:

int stateStream(int[] arr) {
    List<Integer> list = Arrays.stream(arr)
            .boxed().sorted()
            .filter(value -> value > 0)
            .collect(Collectors.toList());
    return IntStream.range(0, list.size() - 1)
            .filter(i -> list.get(i + 1) - list.get(i) > 1)
            .mapToObj(list::get)
            .findFirst()
            .map(i -> i + 1)
            .orElse(0);
}

おすすめ

転載: http://43.154.161.224:23101/article/api/json?id=187522&siteId=1