LIST
1行に一連の文字が含まれるファイル があります。各行には、「C」というカテゴリのラベルが付いています。例:
C: w r t y i o p s d f g h j k l z b n m
V: a e i o u
E: n m ng
C、V、Eのすべての組み合わせ(またはCとV、CとEなど)を使用して印刷したいのですdoseq
が、一般的には、コンパイル時にネストされたコレクションがわからないためです。
つまり
"CV" [x y] (str x y )
"CVE" [x y z] (str x y z)
"CVCV" [x y z a] (str x y z a)
私のコードword-generator.clj
(ns word-generator )
(use 'clojure.string)
(import 'java.io.File)
(use 'clojure.java.io)
(defn get-lines [fname]
(with-open [r (reader fname)]
(doall (line-seq r))))
(defn get-list [x lines]
(first (remove nil?
(for [num (range (count lines)) ]
(if (= (first(split (nth lines num) #"\s+")) x)
(rest(split (nth lines num) #"\s+")))))))
(def sounds(get-lines "LIST")) ;; get the list
(def C (get-list "C:" sounds)) ;; map consonants
(def V (get-list "V:" sounds)) ;; map vowels
(def E (get-list "E:" sounds)) ;; map end consonants
(def LI "CVE") ;; word structure
(defn word-runner[carry args depth]
(doseq [x C y V z E] (println (str x y z)))) ;; iterate and make the words
(defn runner[]
( (print "enter arg list: ")
(def INPUT (read-line))
(word-runner "" INPUT 0)))
コンパイル時にファイル内の行数を知らなくても、ファイル内で見つかった文字のすべてのシーケンスに対してネストされたループを実行するword-runner
ように実装するにはどうすればよいですか?doseq