2010-12-16から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) (…