Last active
October 13, 2015 10:08
-
-
Save okaram/4179787 to your computer and use it in GitHub Desktop.
Recursion and memoization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unsigned factorial(unsigned n) | |
| { | |
| if(n==0) | |
| return 1; | |
| else | |
| return n*factorial(n-1); | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unsigned fibo(unsigned n) | |
| { | |
| if(n<=1) | |
| return n; | |
| return fibo(n-1)+fibo(n-2); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unsigned fibo_memo(unsigned n) | |
| { | |
| static map<unsigned,unsigned> memo; | |
| if(n<=1) | |
| return n; | |
| if(memo.count(n)>0) | |
| return memo[n]; | |
| // otherwise | |
| unsigned ret=fibo_memo(n-1)+fibo_memo(n-2); | |
| memo[n]=ret; | |
| return ret; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int main(int argc, char*argv[]) | |
| { | |
| fibo1=memoize(fibo1); | |
| cout << argv[1] << " ->" << fibo1(atoi(argv[1])) << endl; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| std::function<unsigned(unsigned)> fibo1=[](unsigned n) | |
| { | |
| if(n<=1) | |
| return n; | |
| return fibo1(n-1)+fibo1(n-2); | |
| }; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| template<class InType, class OutType> | |
| std::function<OutType(InType)> memoize(std::function<OutType(InType)> foo) | |
| { | |
| // return a lambda, this is a function | |
| return [foo](InType n){ | |
| static map<InType,OutType> memo; | |
| OutType ret; | |
| if(memo.count(n)>0) { | |
| ret =memo[n]; | |
| return ret; | |
| } | |
| ret=foo(n); | |
| memo[n]=ret; | |
| return ret; | |
| }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment