Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Problem
Count the number occurrence in a list, they must be adjacent. Ex: (a a b b c c a e), returns ( (a 2) (b 2) (c 2) (a 1) (e 1) ).

I tried,

(define (loop lst) 
  (let ((i 1) (j 0))
    (do ()
      [(> j (- (length lst) 2))]
      (if (eq? (car lst) (cadr lst))
          (set! i (+ i 1))
          (display i)
      )
      (
         (set! lst (cdr lst))
         (set! j (+ j 1))
      )
    )
  )
)

When running, DrScheme complained

procedure application: expected procedure, given: #<void>; arguments were: #<void>

How can I use multiple statements inside an if or a do loop like this?

Thanks,

share|improve this question
2  
-1 My eyes! The goggles do nothing! – Chris Jester-Young Apr 22 '11 at 6:33
@Chris Jester-Young: I don't get it? – Chan Apr 22 '11 at 6:34
What are you trying to do? That doesn't look like any code a sane Schemer would, or should, want to write. – Chris Jester-Young Apr 22 '11 at 6:36
@Chris Jester-Young: Forgive me! I'm very struggling to learn Scheme now. I was obsessed so much by traditional imperative language structure. I felt extremely uncomfortable using parentheses as code block. Honestly, I almost gave up! – Chan Apr 22 '11 at 6:39
1  
Right, and that's why I just posted you a fold-based answer. Once you get the hang of fold, map, etc., you won't want to use imperative-style loops again. :-) (I just retracted my downvote, BTW. Thanks for explaining your task.) – Chris Jester-Young Apr 22 '11 at 6:45

1 Answer

up vote 2 down vote accepted

Oh, you want to compute the run lengths! Guess what! Another problem for fold! :-P

(define (run-lengths lst)
  (fold-right (lambda (elem result)
                (if (and (pair? result)
                         (equal? elem (caar result)))
                    (cons (cons elem (+ (cdar result) 1)) (cdr result))
                    (cons (cons elem 1) result)))
              '() lst))

(My version returns the run lengths as dotted pairs, rather than lists of length 2.) Since you're using Racket, you can use foldr instead of fold-right; that way, you won't need to load SRFI 1.

share|improve this answer
@Chris Jester-Young: Now, you hurt my eyes. Thanks! – Chan Apr 22 '11 at 6:47
@Chan: Hahaha. Do your best to study how my function works, by reading up on how foldr works. It will enlighten you! :-) – Chris Jester-Young Apr 22 '11 at 6:48
@Chris Jester-Young: Well, I'm familiar with the meaning of fold. I read from wiki, it is similar to std::accumulate in C++. Still, the () was super annoying :(! – Chan Apr 22 '11 at 6:50
@Chan: It is exactly like std::accumulate. :-) One day, you'll get used to looking at the brackets (or rather, not looking at them). :-) – Chris Jester-Young Apr 22 '11 at 6:52
3  
@Chan: Notice the difference in code structure, too. Lispers don't put "dangling" parenthesis on a line the same way C* language programmers tend to put curly braces on a line. This actually increases the readability of your code. For more info check out this lisp style guide: mumble.net/~campbell/scheme/style.txt – Shaun Apr 22 '11 at 12:53
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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