我有一個像下面的代碼。它返回列表,(((1 . 2) (1 . 0)) ((1 . 2) (1 . 1)) ((1 . 2) (1 . 3)) ((1 . 2) (1 . 4)) ((1 . 2) (1 . 5)) ((1 . 2) (1 . 6)) ((1 . 2) (1 . 7)) ((1 . 2) (0 . 2)) ((1 . 2) (2 . 2)))
LISP。創建對的列表
我不知道如果我能在路上改寫generHod功能,使其返回列表像((1.2 1.0) (3.4 4.2) (1.3 1.3)...)
(setf hod '())
(defun generHod (CurrX CurrY)
(dotimes (y 8)
(if (/= y CurrY)
(setf hod (append hod (list (append (list (cons CurrX CurrY))(list (cons CurrX y))))))
)
)
(dotimes (x 8)
(if (/= x CurrX)
(setf hod (append hod (list (append (list (cons CurrX CurrY))(list (cons x CurrY))))))
)
)
)
所有這些附加業務:不良作風。 –
你提供什麼解決方案?不幸的是,我並沒有意識到不同的lisp函數可以使它更容易。 –
我可以爲您提供一個很好的免費下載介紹性的Lisp書籍,其中介紹了基本知識:https://www.cs.cmu.edu/~dst/LispBook/index.html –