15

我正在尝试打印出我的二叉树,但 Clojure 让我很难正确打印出序列。

因此,例如,我有一个节点列表'(1 2 3)

在每次迭代中,我想在每个元素之前和之后打印出带有多个空格的节点。

(defn spaces [n]
  (apply str (repeat n " ")))

太好了,这似乎有效。

所以,假设我有一个nodes '(:a :b :c)我想在一行上打印的列表,如上所述,空格。

(println (map #(str (spaces before) % (spaces (dec before))) nodes))

我有一个项目清单。使用地图我得到一个字符串对象列表。太好了,所以我可以打印它们!

但这给了我这个:

(clojure.lang.LazySeq@d0b37c31 clojure.lang.LazySeq@105879a9 clojure.lang.LazySeq@8de18242)

所以我用谷歌搜索了如何打印惰性序列,然后开始使用print-str命令。根据文档,这会打印到一个字符串,然后返回。

(println (print-str (map #(str (spaces before) % (spaces (dec before))) nodes)))

但这给了我这个:

(clojure.lang.LazySeq@d0b37c31 clojure.lang.LazySeq@105879a9 clojure.lang.LazySeq@8de18242)

没有变化.. Hrm。任何帮助是极大的赞赏。

4

1 回答 1

31
user> (str (map inc (range 10)))
"clojure.lang.LazySeq@c5d38b66"
user> (pr-str (map inc (range 10)))
"(1 2 3 4 5 6 7 8 9 10)"

toString方法由LazySeq调用str,这避免了通过不透明地显示对象身份来实现值的惰性序列。该pr-str函数调用print-dup对象的多方法,该方法旨在获取读者可以理解的事物的版本(因此对于LazySeq使 equal 的文字值LazySeq)。

对于结构的漂亮格式,请查看clojure.pprint附带的命名空间clojure.core,它具有pprintprint-table以及用于自定义漂亮打印行为的各种功能。

user> (require '[clojure.pprint :as pprint :refer [pprint print-table]])
nil
user> (pprint [:a [:b :c :d [:e :f :g] :h :i :j :k] :l :m :n :o :p :q [:r :s :t :u :v] [:w [:x :y :z]]])
[:a
 [:b :c :d [:e :f :g] :h :i :j :k]
 :l
 :m
 :n
 :o
 :p
 :q
 [:r :s :t :u :v]
 [:w [:x :y :z]]]
nil
user> (print-table (map #(let [start (rand-int 1e6)] (zipmap % (range start (+ start 10)))) (repeat 5 [:a :b :c :d :e :f :g :h :i :j])))

|     :a |     :c |     :b |     :f |     :g |     :d |     :e |     :j |     :i |     :h |
|--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
| 311650 | 311652 | 311651 | 311655 | 311656 | 311653 | 311654 | 311659 | 311658 | 311657 |
|  67627 |  67629 |  67628 |  67632 |  67633 |  67630 |  67631 |  67636 |  67635 |  67634 |
| 601726 | 601728 | 601727 | 601731 | 601732 | 601729 | 601730 | 601735 | 601734 | 601733 |
| 384887 | 384889 | 384888 | 384892 | 384893 | 384890 | 384891 | 384896 | 384895 | 384894 |
| 353946 | 353948 | 353947 | 353951 | 353952 | 353949 | 353950 | 353955 | 353954 | 353953 |
nil
于 2014-05-01T12:11:35.640 回答