Let's say I have a list:
a b a a a c e.
I want to get rid of all adjacent duplicate, i.e. the two a's in the middle. So the list becomes
a b a c e.
The algorithm that I current have in mind is,
- Check if the current value is equal to the next value by
(equal? (car lst) (car (cdr lst)))
If they are equal then I want to skip the duplicate element, but I don't know how to achieve this behavior in Scheme? Any idea?
- If they're not equal, keep traversing through the list.
By the way, is there a way to implement iterative for loop in Scheme for these types of problem? Because I feel recursion is just overkill for this simple problem.
Thanks,
forloop by default. But SRFI 1 providesfold, which is the standard way to iteratively compress a list to a single value. (There's alsomap, which is the standard way to process each element in a list, returning the results in a new list.) – Chris Jester-Young Apr 21 '11 at 2:35