这里有一个搜索功能真是好事。我最近遇到了类似的情况,我想对几个输入集合执行不同的转换,并最终得到一个集合,所以我尝试了几种不同的方法。
以下是我的交互式Python会话。在进行了一些基本的性能测试后,我得出结论,使用 `into` 链接集合的方案可能是最具表现力的,而且在性能方面并不比 `catduce` 差。
 ;(def input1 (into [] (range 100000)))
 ;(def input2 (into [] (range 999 9999)))
 ;(def xf1 (filter odd?))
 ;(def xf2 (map inc))
(def xf3 (take 100))
(def xf4 (comp (filter even?) (map dec) (take 1000)))
;; concat (不喜歡它的懒惰性和分配了多个中间集合)
(def result (into []
(concat
(into [] xf1 input1)
(into [] xf2 input1)
(into [] xf3 input2)
(into [] xf4 input2))))
;; cat (仍然分配中间集合)
(= result
(into []
cat
[(into [] xf1 input1)
(into [] xf2 input1)
(into [] xf3 input2)
(into [] xf4 input2)]))
;; intos (没有中间分配,但是多次暂时/持久切换)
;; - 但是这不应该是个大问题,因为它们都是 O(1))
(= result
(-> []
(into xf1 input1)
(into xf2 input1)
(into xf3 input2)
(into xf4 input2)))
;; reduce into
;; - 几乎与 intos 解决方案相同,无需多次编写 into)
(= result
(reduce
#(into %1 (second %2) (first %2))
[]
[[input1 xf1]
[input1 xf2]
[input2 xf3]
[input2 xf4]]))
;; catduce
;; - 尝试看是否可以在不进行许多暂时/持久切换的情况下完成)
(defn catduce
"从 clojure.core/cat 采纳"
[rf]
(fn
([] (rf))
([result] (rf result))
([result input+xf]
(transduce (second input+xf) rf result (first input+xf)))))
(= result
(into [] catduce
[[input1 xf1]
[input1 xf2]
[input2 xf3]
[input2 xf4]]))