Search found 7 matches

by bhupi
Sat Apr 21, 2012 11:24 pm
Forum: Common Lisp
Topic: stack size
Replies: 1
Views: 3665

stack size

how do i increase stack size in clisp
by bhupi
Fri Apr 20, 2012 1:56 am
Forum: Common Lisp
Topic: want to make stack
Replies: 1
Views: 3672

want to make stack

;; IN THIS PROGRAM I WANT TO CHANGE REMOVE-FRONT FUNCTION TO RETURN ;;VALUES IN REVERSE ORDER LIKE ;;IF I ENTER a c b it returns a then c then b but i want that b must be returned first ;;then c then a (defstruct q (key #'identity) (last nil) (elements nil)) (defun make-empty-queue () (make-q)) (def...
by bhupi
Fri Apr 20, 2012 12:35 am
Forum: Common Lisp
Topic: can any one provide me clisp stack program
Replies: 1
Views: 3784

can any one provide me clisp stack program

i need this program for my project submission
by bhupi
Thu Apr 19, 2012 6:01 am
Forum: Common Lisp
Topic: input buffered file system character error
Replies: 3
Views: 5762

Re: input buffered file system character error

i dont know how to run this program
by bhupi
Thu Apr 19, 2012 12:45 am
Forum: Common Lisp
Topic: input buffered file system character error
Replies: 3
Views: 5762

input buffered file system character error

(ed note: this was just a copy of the code at http://www.lispworks.com/documentation/ ... ug-22.html)
by bhupi
Wed Apr 18, 2012 9:06 pm
Forum: Common Lisp
Topic: this queue program is not running showing error
Replies: 4
Views: 15185

Re: this queue program is not running showing error

still this program is not working

plss help i need it by tomorrow morning
by bhupi
Wed Apr 18, 2012 10:05 am
Forum: Common Lisp
Topic: this queue program is not running showing error
Replies: 4
Views: 15185

this queue program is not running showing error

(defun make-queue (lambda () (let ((front '()) (back '())) (lambda (cmd . data) (define exchange (lambda () (set! front (reverse back)) (set! back '()))) (case cmd ((push) (push (car data) back)) ((pop) (or (pop front) (begin (exchange) (pop front)))) ((peek) (unless (pair? front) (exchange)) (car ...