c_cpp 纤维系列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 纤维系列相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <vector>
#include <unordered_map>

int fib(int n)
{
	if (n <= 1)	
		return n;
	
	return fib(n - 1) + fib(n - 2);
}

int fib_topDown(int n, std::unordered_map<int, int>& memo)
{
	if (n <= 1) 
		return 1;
	
	auto result = memo.find(n);
	if (result != memo.end()) 
		return result->second;
	
	return memo[n] = fib_topDown(n - 1, memo) + fib_topDown(n - 2, memo);
}

int fib_buttonUp(int n)
{
	std::vector<int> results(n + 1);
	results[0] = 0;
	results[1] = 1;
	for (int i = 2; i <= n; i++) 
		results[i] = results[i - 1] + results[i - 2];
	
	return results.back();
}

int main(int argc, char *argv[]) {

	std::cout << fib(40) << std::endl;

	std::unordered_map<int, int> memo;
	memo[1] = 0;
	memo[2] = 1;
	std::cout << fib_topDown(40, memo) << std::endl;

	std::cout << fib_buttonUp(40) << std::endl;

	getchar();
	return 0;
}

以上是关于c_cpp 纤维系列的主要内容,如果未能解决你的问题,请参考以下文章

Build your own React_4 理解React纤维

Build your own React_4 理解React纤维

c_cpp Fibbonacci系列

c_cpp Fibbonacci系列

c_cpp 斐波那契系列

c_cpp 对一系列元素进行排序