给定一个正整数 n,打印从 1 到最大的 n 位数。
例如:
n = 2, 则打印从 1 到 99;
n = 3, 则打印从 1 到 999。
在 n 比较小(比如n=1或n=2或n=3)时,可以使用一个循环简单的解决问题,但当 n 比较大时,打印的数字可能会超出 int 或 long所能表示的范围,这是就应该使用string来表示大数以解决问题。
#include<iostream>
#include<vector>
#include<cmath>
using namespace std;
char chararr[10] = {'0','1','2','3','4','5','6','7','8','9'};
void dfs(int n, string s, string &res)
{
if(s.size()==n)
{
for(int i=0; i<s.size(); ++i) //处理前缀0
{
if(s[i]!='0')
{
break;
}
else
{
s.erase(0,1);
i--;
}
}
if(s.size()==0)
{
return;
}
res = res + s + " ";
return;
}
for(int i=0; i<10; ++i)
{
s += chararr[i];
dfs(n,s,res);
s.erase(s.size()-1,1);
}
}
int main()
{
int n = 0;
cin >> n;
string s = "";
string res = "";
dfs(n,s,res);
cout << res;
}
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/qq_46027243/article/details/115416312
内容来源于网络,如有侵权,请联系作者删除!