I need help finding the first position of an element in a list and then finding all positions of the same element in both Scheme and Prolog for a really late exam for a course I did half a year ago and can't remember ANYTHING :(

Any ideas?

link|improve this question
9  
Go through your course materials again. – FlopCoder Feb 4 at 14:11
I don't have any that will help me with that -.-' Otherwise I wouldn'tve asked... – user1189409 Feb 5 at 11:35
feedback

closed as not a real question by dasblinkenlight, larsmans, mario, John Clements, Graviton Feb 11 at 5:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

Here's a version in Prolog:

positions( E, L, P ) :- positions( E, L, P, 0 ).
positions( E, [], []. _ ).
positions( E, [E|T], P, [P|PT] ) :- P1 is P + 1, positions( E, T, P1, PT ).
positions( E, [X|T], P, PT ) :- X \= E, P1 is P+1, positions( E, T, P1, PT ).
link|improve this answer
I have no idea why I always get a "false" statement :( Thank you for your effort though. – user1189409 Feb 5 at 11:48
ignore my last comment, it works fine now, thanks ;) – user1189409 Feb 9 at 11:54
feedback

Here's a version in Scheme:

(define (positions lst ele)
  (let loop ((lst lst)
             (idx 0))
    (cond ((null? lst)
           '())
          ((equal? (car lst) ele)
           (cons idx (loop (cdr lst) (add1 idx))))
          (else
           (loop (cdr lst) (add1 idx))))))

The above returns a list with the 0-based indexes where ele is found in lst.

link|improve this answer
feedback

As far as Scheme goes, if you want to learn to do it then skim The Little Schemer.

Someone else may have a recommendation for the appropriate Prolog book.

link|improve this answer
I don't really want to learn it, it's more of having to know the programs as asked for above by tomorrow :( Thanks for the link though – user1189409 Feb 8 at 13:37
feedback

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