• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

learn-co-curriculum/fibonacci-recursive: algorithms and data structures

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

learn-co-curriculum/fibonacci-recursive

开源软件地址:

https://github.com/learn-co-curriculum/fibonacci-recursive

开源编程语言:

Ruby 73.2%

开源软件介绍:

Day 3: Recursive Fibonacci Series

Learning Goals

  • Solve algorithm problems using recursion

Instructions

Find the nth element in the Fibonacci series. The Fibonacci sequence starts with a 0 followed by a 1. After that, every value is the sum of the two values preceding it. Here are the first seven values as an example: 0, 1, 1, 2, 3, 5, 8.

Input: 0
Output: 0

Input: 2
Output: 1

Input: 10
Output: 55

If you solved this problem before iteratively, you may wish to convert that solution to a recursive version. Here are two iterative solutions - one in Ruby and one in JS:

def fibonacci(n)
  return n if n < 2

  values = [0, 1]

  (n - 1).times do
    values << values[-1] + values[-2]
  end

  values.last
end
function fibonacci(n) {
  if (n < 2) {
    return n;
  }

  const values = [0, 1];

  for (let i = 0; i < n - 1; ++i) {
    values.push(values[values.length - 1] + values[values.length - 2]);
  }

  return values[values.length - 1];
}

Stuck? Here are some hints:

  • Code the base cases first.
  • You may wish to look up how the fibonacci sequence is expressed as a formula.
  • Start small. What needs to happen if n is 1 or n is 2?

Use the language of your choosing. We've included starter files for some languages where you can pseudocode, explain your solution and code.

Before you start coding

  1. Rewrite the problem in your own words
  2. Validate that you understand the problem
  3. Write your own test cases
  4. Pseudocode
  5. Code!

And remember, don't run our tests until you've passed your own!

How to run your own tests

Ruby

  1. cd into the ruby folder
  2. ruby <filename>.rb

JavaScript

  1. cd into the javascript folder
  2. node <filename>.js

How to run our tests

Ruby

  1. cd into the ruby folder
  2. bundle install
  3. rspec

JavaScript

  1. cd into the javascript folder
  2. npm i
  3. npm test



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
animate-css/animate.css: 发布时间:2022-04-28
下一篇:
patmorin/ods: Mission: To provide a high-quality open content data structures te ...发布时间:2022-04-27
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap