上海交通大学机试 2的幂次方 Easy *典型递归思路
Posted songlinxuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上海交通大学机试 2的幂次方 Easy *典型递归思路相关的知识,希望对你有一定的参考价值。
基本思想:
使用迭代会很麻烦,还不如递归进行字符串拼接;
关键点:
无;
#include<iostream> #include<vector> #include<string> #include<algorithm> using namespace std; const int maxn = 15; int num[maxn]; string fun(int n) { if (n == 0) return "0"; int index = maxn - 1; string s=""; while (n != 0) { for (; index >= 0; index--) { if (num[index] <= n) { if (index == 1) s = s + "2+"; else { s = s + "2(" + fun(index) + ")+"; } n -= num[index]; } } } s.pop_back(); return s; } void init() { for (int i = 0; i < maxn; i++) { num[i] = pow(2, i); } } int main() { int n; init(); while (cin >> n) { string s = fun(n); cout << s << endl; } }
以上是关于上海交通大学机试 2的幂次方 Easy *典型递归思路的主要内容,如果未能解决你的问题,请参考以下文章