java - 过滤功能不偷懒

标签 java lambda java-8 functional-programming lazy-evaluation

为了好玩,我正在制作我自己的 Java 流库版本。这是我的类(class)签名:

class Stream<T> {
  Supplier<T> head;
  Supplier<Stream<T>> tail;
  ...
}

另外,我写了一个基本的无限流迭代器,它会根据给定的函数生成一个无限列表:

  public static <T> Stream<T> iterate(T first, Function<T, T> f) {
    return new Stream<T>(
            () -> first,
            () -> {
              T nextElem = f.apply(first);
              if (nextElem == null) {
                return generate(() -> null);
              } else {
                return iterate(nextElem, f);
              }
            }
    );
  }

generate 函数是 iterate 的一个特例,它永远重复给定的元素。在上面的函数中,我生成了无限序列的 null 以指示流的结尾(我不认为我会在流中存储 null 值)。

然后我写了一个 reduce 函数,其中 reducing 函数在第二个参数上是惰性的:

  public <U> U reduce(U acc, Function<T, Function<Supplier<U>, U>> f) {
    System.out.println("REDUCE CALL");
    T elem = head.get();
    if (elem != null) {
      return f.apply(elem).apply(() -> this.tail.get().reduce(acc, f));
    } else {
      return acc;
    }
  }

在 reduce 函数的基础上,我编写了 filter 函数。

  public Stream<T> filter(Predicate<T> p) {
    System.out.println("FILTER");
    return reduce(generate(() -> null), elem -> acc -> {
      if (p.test(elem)) {
        return new Stream<>(
                () -> elem,
                () -> acc.get()
        );
      } else {
        return acc.get();
      }
    });
  }

最后,我开始使用我自己的 Stream 类:

  public static void main(String[] args) {
    Stream<Integer> ilist =
            Stream
              .iterate(1, x -> x + 1)
              .filter(x -> x >= 5);
  }

但过滤器并不懒惰!从下面给出的输出来看,我认为过滤器会评估元素,直到找到与给定谓词匹配的元素。

FILTER
REDUCE CALL
REDUCE CALL
REDUCE CALL
REDUCE CALL
REDUCE CALL

我的代码有什么问题,我怎样才能让我的过滤器函数再次惰性化?

更新:根据 Sweeper 的评论,我在不使用 reduce 的情况下又尝试了过滤功能。

  public Stream<T> filter2(Predicate<T> p) {
    System.out.println("FILTER2");
    T elem = head.get();
    if (elem == null) {
      return generate(() -> null);
    } else {
      if (p.test(elem)) {
        return new Stream<>(
                () -> elem,
                () -> this.tail.get().filter2(p)
        );
      } else {
        return this.tail.get().filter2(p);
      }
    }
  }

然而,这个函数也不是惰性的。我使用 filter2 的主要功能的输出如下:

FILTER2
FILTER2
FILTER2
FILTER2
FILTER2

我该如何解决这个问题,有没有办法通过惰性 reduce 实现惰性过滤器?

致谢:此练习和上述函数的实现受到 Chiusano 和 Bjarnason 所著Scala 中的函数式编程一书的启发。

最佳答案

在您编写的没有reduce 的版本中,元素存在但不满足谓词的情况不是惰性的。您不像在其他情况下那样将递归调用包装在供应商 lambda 中,而是急切地获取尾部并立即对其进行过滤。

public Stream<T> filter2(Predicate<T> p) {
    System.out.println("FILTER2");
    T elem = head.get();
    if (elem == null) {
        return generate(() -> null);
    } else {
        if (p.test(elem)) {
            return new Stream<>(
                () -> elem,
                () -> this.tail.get().filter2(p)
            );
        } else {
            return this.tail.get().filter2(p); // <- not lazy!
        }
    }
}

您需要一种创建流的方法,这样可以推迟到以后再决定它是否为空。

public class Stream<T> {
    // private constructor(s)

    public static <T> Stream<T> empty() { /* ... */ }

    public static <T> Stream<T> cons(Supplier<T> head, Supplier<Stream<T> tail) { /* ... */ }

    public static <T> Stream<T> lazy(Supplier<Stream<T>> stream) { /* ... */ }

    public Stream<T> filter(Predicate<T> p) {
        if ( /* this stream is empty */ ) {
            return Stream.empty();
        } else if ( /* head element satisfies predicate */ ) {
            // lazily filter tail, cons head element
        } else {
            return Stream.lazy(() -> this.tail.get().filter(p));
        }
    }
}

类似的东西。

关于java - 过滤功能不偷懒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50771373/

相关文章:

java - Spring问题——NotWritablePropertyException

java - netbeans 能否为映射自动生成正确的 hashCode() 和 equals() 方法?

java - 使用aws sdk for java从AWS服务器获取现有 key 对

java - 在 JUnit 测试中,有没有一种方法可以确保所有断言都已执行?

java - 如何在 Java 8 中为匿名类启用 Android Studio/IDEA 闭包折叠?

java - java.library.path 中的 org.hyperic.sigar.SigarException : no sigar-amd64-winnt. dll

java - 序列化 lambda 函数的映射

python - 使用匿名lambda实现阶乘函数的python代码的解释是什么

python - Keras Lambda层没有输出张量形状,编译模型时出错

spring-boot - @SpyBean 和 Mockito.any() 在验证期间