1 Star 0 Fork 0

chai2010/cc-mini-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
example.cc 520 Bytes
一键复制 编辑 原始数据 按行查看 历史
chai2010 提交于 2014-04-02 10:15 . improve examples.
// Copyright 2013 <chaishushan{AT}gmail.com>. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#include "example.h"
int Sum(int a, int b) {
return a+b;
}
// 1, 1, 2, 3, 5, ...
int FibonacciSlow(int i) {
return (i < 2)? 1: FibonacciSlow(i-1) + FibonacciSlow(i-2);
}
// 1, 1, 2, 3, 5, ...
int FibonacciFast(int i) {
static int fib[47];
return (fib[i] != 0)? fib[i]: (
fib[i] = (i < 2)? 1: FibonacciFast(i-1) + FibonacciFast(i-2)
);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chai2010/cc-mini-test.git
git@gitee.com:chai2010/cc-mini-test.git
chai2010
cc-mini-test
cc-mini-test
master

搜索帮助