高精度进制转换

高精度进制转换

传入参数约定:传入第一个参数为string类型,第二第三均为int型,返回值为string类型
算法思想:模拟手工进制转换。
算法复杂度:o(n^2)。
#include
#include
using namespace std;
//将字符串表示的10进制大整数转换为m进制的大整数
//并返回m进制大整数的字符串
bool judge(string s)  //判断串是否为全零串
{
    for(int i=0;i>s)
    {
        cout<


你可能感兴趣的:(ACM_高精度)