首页 > 其他 > 详细

Dynamic Programming

时间:2020-01-24 09:32:21      阅读:113      评论:0      收藏:0      [点我收藏+]

0. 

1. examples:

def fib(n):

  if n == 1 or n == 2:

    result = 1

  else 

     result = fib(n-1) + fib(n-2)

  return result

this is very in-efficient, O(2^n), and we use the following solution, which is called memoized solution

def fib(n, memo):

  if memo[n] != null:

    return memo[n]

  if n ==1 or n ==2:

    result = 1

  else 

    result = fib(n-1, memo) + fib(n-2, memo)

  memo[n] = result

  return result

Memo is an array, store memo = {1, 1, 2, 3, 5, 8 ,...}

def fib_bottom_up(n):

  if n ==1 or n ==2: 

    return 1

  bottom_up = new int[n+1]

  bottom_up[1] =1

  bottom_up[2] =1

  for i from 3 to n:

    bottom_up[i] = bottom_up[i-1] + bottom[i-2]

  return bottom_up[n]

Dynamic Programming

原文:https://www.cnblogs.com/sarah-zhang/p/12231816.html

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