vote up 2 vote down star

I find myself doing this sort of thing all the time. I've been considering writing a macro/function to make this sort of thing easier, but it occurs to me that I'm probably reinventing the wheel.

Is there an existing function that will let me accomplish this same sort of thing more succinctly?

(defun remove-low-words (word-list)   
  "Return a list with words of insufficient score removed."
  (let ((result nil))
    (dolist (word word-list)  
      (when (good-enough-score-p word) (push word result)))                                      
    result))
flag

4 Answers

vote up 13 vote down check

There are several built-in ways of doing this. One way would be:

(remove-if-not 'good-enough-score-p word-list)

And another:

(loop for word in word-list  
      when (good-enough-score-p word)
      collect word)

And yet another:

(mapcan (lambda (word)
          (when (good-enough-score-p word)
            (list word)))
        word-list)

Etc... There's also SERIES and Iterate. The Iterate version is identical to the LOOP version, but the SERIES version is interesting:

(collect (choose-if 'good-enough-score-p (scan word-list))))

So, yes, you're very likely to reinvent some wheel. :-)

link|flag
vote up -2 vote down

There are a couple ways you can do this. First, and probably most easily, you can do it recursively.

(defun remove-low-words (word-list)
  (if (good-enough-score-p (car word-list))
      (list word (remove-low-words (cdr word-list)))
      (remove-low-words (cdr word-list))))

You could also do it with mapcar and reduce, where the former can construct you a list with failing elements replaced by nil and the latter can be used to filter out the nil.

Either would be a good candidate for a "filter" macro or function that takes a list and returns the list filtered by some predicate.

link|flag
I believe your version has no base case, among other problems. – Luís Oliveira Sep 18 '08 at 8:20
vote up -1 vote down

In the perl and unix world this is called grep, but it is really just syntax sugar over array iteration. For example, in perl, your solution would look like this:

my @results = grep {good_enough_score_p($_)} @word_list;

The Lisp equivalent is, as mentioned before, a (loop ... when cond collect ...) and/or (remove-if-not cond ...).

You could wrap this up in a function or macro and have a lisp grep (tho its pointless):

(defmacro grep (fn list)
    (let    ((word (intern (format nil "~a" (gensym)))))
        `(loop ;` // I really don't like this syntax hilighter
            for ,word in ,list
            when (funcall ,fn ,word)
            collect ,word)))

or

(defun grep (fn list)
    (remove-if-not fn list))
link|flag
1  
this code is very bogus and should be deleted from this article. – Luís Oliveira Sep 23 '08 at 20:32
I know you don't like the code, but bogus? If you can back that up I'll be happy to delete the response. – dsm Sep 24 '08 at 9:26
What are intern and format there for? Why not just "(let ((word (gensym))) ..."? – Svante Jan 7 at 14:47
vote up 4 vote down

The function you want is remove-if-not, which is built-in.

(defun remove-low-words (word-list)
  (remove-if-not #'good-enough-score-p word-list))

If you feel like you are re-inventing something to do with lists, you probably are. Check the Hyperspec to see.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.