vote up 4 vote down star
1

Given a list, how would I select a new list, containing a slice of the original list (Given offset and number of elements) ?

EDIT:

Good suggestions so far. Isn't there something specified in one of the SRFI's? This appears to be a very fundamental thing, so I'm surprised that I need to implement it in user-land.

flag

I just want to put in my recommendation for Nathan Sanders's answer, it's definitely a better use of SRFIs than the other submissions. Besides, that would have been the answer I'd have written. :-) – Chris Jester-Young Oct 10 '08 at 2:14

5 Answers

vote up 6 vote down check

The following code will do what you want:

(define get-n-items
    (lambda (lst num)
        (if (> num 0)
            (cons (car lst) (get-n-items (cdr lst) (- num 1)))
            '()))) ;'

(define slice
    (lambda (lst start count)
        (if (> start 1)
            (slice (cdr lst) (- start 1) count)
            (get-n-items lst count))))

Example:

> (define l '(2 3 4 5 6 7 8 9)) ;'
()
> l
(2 3 4 5 6 7 8 9)
> (slice l 2 4)
(3 4 5 6)
>
link|flag
There's a typo in get-n-items - The else-part of the if-form needs a quote. Can you edit that? – troelskn Sep 20 '08 at 16:26
vote up 2 vote down

Strangely, slice is not provided with SRFI-1 but you can make it shorter by using SRFI-1's take and drop:

(define (slice l offset n)
  (take (drop l offset) n))

I thought that one of the extensions I've used with Scheme, like the PLT Scheme library or Swindle, would have this built-in, but it doesn't seem to be the case. It's not even defined in the new R6RS libraries.

link|flag
vote up 0 vote down

You can try this function:

subseq sequence start &optional end

The start parameter is your offset. The end parameter can be easily turned into the number of elements to grab by simply adding start + number-of-elements.

A small bonus is that subseq works on all sequences, this includes not only lists but also string and vectors.

Edit: It seems that not all lisp implementations have subseq, though it will do the job just fine if you have it.

link|flag
Is subseq a CL function? It doesn't appear to be part of PLT-Scheme at least. – troelskn Sep 23 '08 at 14:45
Gauche has it: practical-scheme.net/wiliki/arcxref?subseq. don't know about others. – dsm Sep 23 '08 at 15:59
Weird. I read about it Paradigms of AI and it was presented as part of the standard. I guess I'm not sure which one of the standards. :P Sorry 'bout that. – Josh Gagnon Sep 23 '08 at 17:39
vote up 0 vote down

Try something like this:

    (define (slice l offset length)
      (if (null? l)
        l
        (if (> offset 0)
            (slice (cdr l) (- offset 1) length)
            (if (> length 0)
                (cons (car l) (slice (cdr l) 0 (- length 1)))
                '()))))
link|flag
vote up 0 vote down
(define (sublist list start number)
  (cond ((> start 0) (sublist (cdr list) (- start 1) number))
        ((> number 0) (cons (car list)
                      (sublist (cdr list) 0 (- number 1))))
        (else '())))
link|flag

Your Answer

Get an OpenID
or

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