阅读“Clojure 编程”(第 98 页)中关于头部保留的段落,我无法弄清楚split-with
示例中发生了什么。我尝试过使用 repl 进行实验,但这让我更加困惑。
(time (let [r (range 1e7)
a (take-while #(< % 12) r)
b (drop-while #(< % 12) r)]
[(count a) (count b)]))
"Elapsed time: 1910.401711 msecs"
[12 9999988]
(time (let [r (range 1e7)
a (take-while #(< % 12) r)
b (drop-while #(< % 12) r)]
[(count b) (count a)]))
"Elapsed time: 3580.473787 msecs"
[9999988 12]
(time (let [r (range 1e7)
a (take-while #(< % 12) r)
b (drop-while #(< % 12) r)]
[(count b)]))
"Elapsed time: 3516.70982 msecs"
[9999988]
正如您从上一个示例中看到的那样,如果我不计算a
,则耗时会以某种方式增加。我想,我在这里错过了一些东西,但是什么?