Skip to content

Commit

Permalink
Merge pull request wangzheng0822#54 from Liam0205/10_recursive
Browse files Browse the repository at this point in the history
[C++][10_recursive] 课程中上台阶代码实现
  • Loading branch information
wangzheng0822 authored Oct 12, 2018
2 parents d2413d6 + 5a374e0 commit 3d812aa
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
Empty file added c-cpp/10_recursive/.gitkeep
Empty file.
71 changes: 71 additions & 0 deletions c-cpp/10_recursive/one_two_step.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
#include <iostream>
#include <unordered_map>

class SolutionOFOneTwoStep {
private:
static std::unordered_map<size_t, size_t> result_;

public:
enum class POLICY {
RECURSIVE,
NONRECURSIVE
};

private:
size_t recursive(size_t steps) {
auto iter = result_.find(steps);
if (result_.end() != iter) { // found.
return iter->second;
} else {
size_t res = operator()(steps - 1) + operator()(steps - 2);
result_.insert({steps, res});
return res;
}
}
size_t nonrecursive(size_t steps) {
auto iter = result_.find(steps);
if (result_.end() != iter) { // found.
return iter->second;
} else {
size_t start;
for (start = steps; start != 2 and result_.end() == result_.find(start); --start) {}
for (size_t i = start; i != steps; ++i) {
result_.insert({i + 1, result_[i - 1] + result_[i]});
}
return result_[steps];
}
}

public:
size_t operator()(size_t steps, const POLICY policy = POLICY::RECURSIVE) {
if (policy == POLICY::RECURSIVE) {
return recursive(steps);
} else if (policy == POLICY::NONRECURSIVE) {
return nonrecursive(steps);
}
}
static void debug() {
for (auto kv : result_) {
std::cout << kv.first << ' ' << kv.second << std::endl;
}
std::cout << std::endl;
}
};

std::unordered_map<size_t, size_t> SolutionOFOneTwoStep::result_ = {{1, 1}, {2, 2}};

int main() {
SolutionOFOneTwoStep::debug();

std::cout << SolutionOFOneTwoStep()(5, SolutionOFOneTwoStep::POLICY::RECURSIVE) << std::endl;
SolutionOFOneTwoStep::debug();

std::cout << SolutionOFOneTwoStep()(10, SolutionOFOneTwoStep::POLICY::NONRECURSIVE) << std::endl;
SolutionOFOneTwoStep::debug();

std::cout << SolutionOFOneTwoStep()(20, SolutionOFOneTwoStep::POLICY::RECURSIVE) << std::endl;
SolutionOFOneTwoStep::debug();

return 0;
}

0 comments on commit 3d812aa

Please sign in to comment.