Lisp語言學習的書

2022-07-17 23:00:24 字數 925 閱讀 1752

scheme

《how to design programs : an introduction to programming and computing》(《程式設計方法》)

《structure and interpretation of computer programs》

《the little schemer》

《the seasoned schemer》

《the scheme programming language》

《yet another scheme tutorial》

《teach yourself scheme in fixnum days》

《simply scheme》

common lisp

最先看:《common lisp:a gentle introduction to symbolic computation》

接著:《ansi common lisp》

接著:《structure and interpretation of computer programs》

接著:《practical common lisp》 (《實用common lisp程式設計》)

接著:《on lisp》

接著:《let over lambda》

還能看就再來:《paradigms of artificial intelligence programming:case studies in common lisp》

還有乙個入門書籍:《land of lisp:learn to program in lisp, one game》

物件導向:《object-oriented programming in common lisp》

以上內容來自豆瓣和水木一些帖子的總結

語言學習 Python學習

1.關於識別符號 python 中的識別符號是區分大小寫的。以下劃線開頭的識別符號是有特殊意義的。以單下劃線開頭 foo 的代表不能直接訪問的類屬性,需通過類提供的介面進行訪問,不能用 from import 而匯入 以雙下劃線開頭的 foo 代表類的私有成員 以雙下劃線開頭和結尾的 foo 代表 ...

SQL 語言學習

一.插入刪除索引,測速 declare d datetime set d getdate select from cvtuser select 語句執行花費時間 毫秒 datediff ms,d,getdate update testrelation set dif4 0,dif5 0 drop i...

C語言學習

c語言學習 2013 3 26 1 編寫strcat s,t 函式,功能 將t指向的字串複製到s指向的字串的尾部。程式設計思路 1 通過while迴圈找到字串s的結束符。2 從找到的結束符開始將t複製到s,同時移動二者的指標。2 編寫函式strend s,t 如果字串t出現在字串s的尾部,該函式返回...