我试图从scheme中的字符串列表中获取一个随机字符串。 示例列表(“this”“表示”今天“”昨天“) 因此,基于列表的长度,创建随机数并输出该单词。但不断收到错误!
我试过这样:
;; produces random number that should be input to the random-function
(define (random-num list)
(random-function ((random (length (list))) list)))
;; loops the number of times till random number is 0 and outputs the list value
(define (random-function num list )
(cond
[(zero? num) (car list)]
[else (random-function (- num 1) (cdr list))]))
错误:
procedure application: expected procedure, given:
("this" "that" "today" "yesterday") (no arguments)
当我尝试做的时候:
(random-function (random (length list))
控制台上的我得到一个随机数字。
在我的程序中完成时,不明白为什么它会崩溃???
我能以更好的方式做到这一点,而不是循环这么多次。 在Java中,我会使用一个数组并直接给出位置。 无论如何也要在计划中做到这一点?
答案 0 :(得分:10)
(define (random-element list)
(list-ref list (random (length list))))