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

i'm kinda of confused how i can construct a for loop in scheme. the for-loop should be implemented in Part II. where it takes a list of numbers and insert each element inside the list in Part I to find the length. I was cable to get the first element but i need a for loop or what so ever to get an output like this: '(7 10 5 16 106 37) here is my code :

#lang racket
; Part I
(define (sequence n)
(cond  [(= n 1)
      (list n)]
[(even? n)
( cons n(sequence( / n 2)))]
[(odd? n) 
( cons n(sequence (+(* n 3) 1))) ] ))

(sequence 3)

; Part II
(define (find-length items)
( cond [(null? items)
      (list items)]
  [find-length(length(sequence(car items))) ]   
  ))

  (find-length '(10 13 16 22 95 158))

here is the output :

 '(3 10 5 16 8 4 2 1)
 7
share|improve this question
The output doesn't seem to match the input. What's the result you expect for this input? : (find-length '(10 13 16 22 95 158)) – Óscar López Feb 14 at 20:25
the output should be : '(7 10 5 16 106 37),, i only got the first element which is 7 – user2070173 Feb 14 at 20:26

1 Answer

up vote 2 down vote accepted

Let me get this straight, you need the length of the Collatz sequence for each of the numbers in the items list? Clearly this is homework, so I can't give a straight answer this time. Here's the general structure of the solution, fill-in the blanks:

(define (find-length items)
  (if (null? items)           ; if the list is null
      <???>                   ; return the empty list
      (cons                   ; otherwise `cons` the
       (length <???>)         ; length of Collatz sequence of first element
       (find-length <???>)))) ; and recur over the rest of the list

Test the procedure, the result should be as shown below:

(find-length '(10 13 16 22 95 158))
=> '(7 10 5 16 106 37)

Notice that your answer was almost right - the base case for this procedure is simply the empty list, and you forgot to call the recursion. In Scheme, at least for know, try not to think about while, for loops: implement iteration in terms of recursion, that's the idiomatic way to do it. After you get that straight, you can start using one of the built-in looping constructs available in Racket.

share|improve this answer
Thanks you, but could you plz explain how i can recur over the rest of the list, i used cdr but it returns a list to the first part such only accepts number – user2070173 Feb 14 at 20:41
@user2070173 You're in the right track: use cdr Notice that in the last line you're NOT calling the sequence procedure - you're calling find-length, which receives a list as a parameter - so cdr is returning the right value! – Óscar López Feb 14 at 20:45
1  
You should really, really take a look at either "How to Design Programs" or "The Little Schemer", either book will teach you how to correctly think about the solution to problems in Scheme. – Óscar López Feb 14 at 20:47
Thank you for your advice – user2070173 Feb 14 at 20:53
that was stupid i got it, i'm just new to scheme syntax – user2070173 Feb 14 at 20:56

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.