首页 > 编程语言 > 详细

[2021 Spring] CS61A Discussion 10: Scheme, Scheme Lists

时间:2021-07-22 11:09:20      阅读:15      评论:0      收藏:0      [点我收藏+]

Discussion 10: https://inst.eecs.berkeley.edu/~cs61a/sp21/disc/disc10/#introduction

Q1: Factorial

x的阶乘

# python
def factorial(x):
    if x <= 1:
        return 1
    else:
        return x * factorial(x-1)
# scheme
(define (factorial x)
  (if (<= x 1) 1 (* x (factorial (- x 1))))
)

Q2: (Tutorial) Fibonacci

斐波那契数列

# python
def fib(n):
    if n < 2:
        return n
    else:
        return fib(n-1) + fib(n-2)
# scheme
(define (fib n)
    (if (< n 2) n (+ (fib (- n 1)) (fib (- n 2)))))

Q3: List Concatenation

# scheme
(define (list-concat a b)
    (if (null? a)
        b
        (cons (car a) 
              (list-concat (cdr a) b)))
)

Q4: (Tutorial) Warm-up

# scheme
(car (cdr (cdr (cdr s))))

Q5: (Tutorial) List Duplicator

# scheme
(define (duplicate lst)
    (if (null? lst)
        lst
        (cons (car lst) (cons (car lst) (duplicate (cdr lst)))))
)

Q6: (Tutorial) List Insert

# python
def inserte(element, lst, index):
    if index == 0:
        return [element] + lst
    else:
        return [lst[0]] + inserte(element, lst[1:], index - 1)
# scheme
(define (insert element lst index)
    (if (= index 0)
        (cons element lst)
        (cons (car lst) (insert element (cdr lst) (- index 1))))
)

[2021 Spring] CS61A Discussion 10: Scheme, Scheme Lists

原文:https://www.cnblogs.com/ikventure/p/15042013.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!