2010-12-01から1ヶ月間の記事一覧

バブルソートの実行結果メモ

(defun bubble () (format t "Enter the limit of no's :") (setf n (read)) (setf a (make-array n)) (setf len n) (setf i 1) (format t "Enter the no's") (dotimes (i n) (setf (aref a i) (read))) (format t " Entered Array is") (format t "~s" a) (…

Emacsリンク集

Emacsのリンク私の .emacs で設定している項目スクリプト言語としてのEmacs LispEmacs クイックリファレンスGNU EmacsマニュアルEmacsビギナーEmacs 利用ガイドEmacs 上で快適に Bash や Zsh を利用する設定カーソル位置の情報で遊ぼう -日々、とんは語る11/…

バブルソート(Lisp)のリンク

英語のソースコードのwikiがあるみたいだ。いろんなアルゴリズムのソースコードを集めているサイトみたい。↓はLispで書いたアルゴリズムのページ。http://en.literateprograms.org/Category:Programming_language:Lispここはバブルソートのリンクにしようか…