0
votes
5answers
36 views
can you have hash tables in lisp?
Can you have hash tables or dicts in Lisp? I mean the data structure that is a collection of pairs (key, value) where values can be acceded using keys.
0
votes
1answer
13 views
Building IP and Port from Byte Buffer
I have a byte buffer 6 bytes long first four contains ip address last 2 contains port, in big endian notation.
to get the ip i am using,
(apply str (interleave (map int (take 4 peer)) (repeat ".")))
…
0
votes
0answers
13 views
Deductive Retriever Example
In lisp,suppose I have two rules in the knowledge base:
(append nil ?x ?x)
(<- (append (cons ?x ?l1) ?l2 (cons ?x ?l3))
(append ?l1 ?l2 ?l3))
Then how could I infer that if we ask
(ask …
3
votes
5answers
149 views
A lisp function refinement
Dear all:
Hi, I've done the Graham Common Lisp Chapter 5 Exercise 5, which requires a function that takes an object X and a vector V, and returns a list of all the objects that immediately precede X …
3
votes
3answers
117 views
Lisp code called from Java
Hello,
Long story:
I am doing a project for my functional programing class, and I thought of writing an AI controller in Lisp, for the Mario AI competition.
I was looking over …
0
votes
2answers
69 views
Can Dancing Links be applied to this CSP?
Can the Dancing Links implementation of Knuth's Algorithm X be used to solve this CSP? In this game the first and last number are always already in the board and I belive there's only one solution to …
3
votes
11answers
327 views
In Which Cases Is Better To Use Clojure?
I develop in Lisp and in Scheme, but I was reading about Clojure and then I want to know, in which cases is better to use it than using Lisp or Scheme? Thanks
1
vote
2answers
113 views
Emacs, Zen-Coding mode, and Putty.
I use emacs via Putty and since Putty doesn't send certain key combinations to the remote console I generally need to re-bind them to other key combinations.
After installing the amazing Zen-Coding …
1
vote
2answers
107 views
Transitioning from .NET to Lisp. Has anybody here done it?
I use ASP.NET during my day job, but I'm always looking to expand my programming knowledge. I've tinkered with everything from Ruby to 6502 assembly language, and now I want to learn Lisp. I guess I …
4
votes
2answers
104 views
Lisp Flavored Erlang - Messaging primitives
I've read through all the documentation, and most of the source of LFE. All the presentations emphasize basic lisp in traditional lisp roles - General Problem Solving, Hello world and syntax …
1
vote
2answers
121 views
Clojure: Unable to resolve symbol. I’m stumped.
When I paste this code into a REPL, it works fine:
(use 'clojure.contrib.seq-utils)
(defn- random-letter [] (char (+ (rand-int 26) 97)))
(defn- random-digit [] (rand-int 10))
(defn- random-password
…
1
vote
2answers
112 views
A simple Lisp question
I now have a problem on using "reduce" to implement my own version of copy-list.
This is what I have done:
(defun my-copy-list (lst)
(reduce #'(lambda (x y)
(cons x y))
…
1
vote
3answers
58 views
CLISP: Attach x recursively to list
I'm trying to add, say, x to every element of a list.
For example:
(queue 3 '(1 2 3))
would give
(3 1) (3 2) (3 3)
The code below apparently does not do what I want.
Any hints please?
(defun …
4
votes
6answers
116 views
Collection of solved Lisp problems
Could somebody direct me to an online and free available collection/s or resources of solved and commented (not necessarily) Lisp programming problems, especially related to binary trees and …
10
votes
8answers
323 views
Lisp as a Scripting Language in a C++ app…
Hey, I've been looking at the possibility of adding a scripting language into my framework and I heard about Lisp and thought I would give it a go. Is there a VM for Lisp like Lua and Python or am I …
