首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Bigint +算子

Bigint +算子
EN

Stack Overflow用户
提问于 2012-02-06 01:46:52
回答 1查看 3.3K关注 0票数 1

我正在做一个bigint项目,我很困惑为什么我的附加操作符没有在测试用例上正常工作。

我将.h文件排除在外,因为它可能没有必要。

bigint.cpp

代码语言:javascript
复制
#include "bigint.h"
#include<iostream>
#include<fstream>
#include<cstdlib>
#include<cassert>



bigint::bigint()
{                           //Default constructor that sets digit to ZERO
   for (int i = 0; i < MAX; i++) 
   {
     digits[i] = 0;
   }
 }


bigint::bigint(int n)
{

for(int i = 0; i < MAX; ++i)       //Sets the digit to ZERO
    digits[i] = 0; 

    for (int i = 0; n != 0 ; ++i) 
{
    digits[i] = (n % 10);       //
           n = n / 10;
}


}


bigint::bigint(const char new_digits[])  
{
int null = 0;
int temp = 0;

for(int i = 0; i < MAX; ++i)
{
    digits[i] = 0;
}

while(new_digits[null] != '\0')
    ++null;
    --null;
temp = null;

for(int j = 0; j < MAX && temp >= 0; ++j)
{
    digits[j] = new_digits[temp] - '0';
    temp -= 1;
}
}


bool bigint::operator==(const bigint& equal) const
{
int i = 0;

while(i < MAX)
{
    if(digits[i] != equal.digits[i])
    {
        return false;
    }

    ++i;
}
return true;
}


std::ostream& operator<<(std::ostream& output, const bigint& source)
{

int sub1 = MAX - 1; //subtracts 1 from the maximum size 

while(source.digits[sub1] == 0)
{
    --sub1;                            //EMPTY
}

while(sub1 > -1)
{
    output << source.digits[sub1]; 
    --sub1;
}

std::cout << std:: endl;

return output; 
}

std::istream& operator>>(std::istream& in, bigint& source)
{
char getdata[MAX];
char user_input;
int i = 0;



    in.get(user_input);
    while(!in.eof() && user_input != ';')
{
    in.get(user_input);
    source.digits[i] = user_input;
    ++i;
}

    source = bigint(getdata);

    return in;
}

char bigint::operator[](const int i)
{
return digits[i];
}

bigint bigint::operator+(const bigint rhs)
{
   bigint result;
    int i = 0;

    for( ; i < MAX; ++i) 
    {

        if((digits[i] + rhs.digits[i]) > 9)
        {
             digits[i+1] = digits[i+1] + 1 ;


        }

               result.digits[i] = (digits[i] + rhs.digits[i]);
               result.digits[i] = result.digits[i] % 10;
     }

    return result;




}

Main.cpp (测试用例)

代码语言:javascript
复制
int main()
{
          // Setup fixture
    bigint left("1");
    bigint right("9");
    bigint result;

    // Test 
    result = (left + right);

     Verify
   assert(left   == "1");
   assert(right  == "9");
   assert(result == "10");

}

在这个测试用例中,程序在assert处中止(结果== "10");

但是,如果我有相同的测试用例,除了assert(结果== 10)之外,程序将运行。

有人能说出原因吗?

EN

回答 1

Stack Overflow用户

发布于 2012-02-06 01:51:49

首先,您应该实现赋值操作符bigint::operator=(const bigint&)

现在,在operator+中,您正在修改左侧对象的内容,在下面的代码中:

代码语言:javascript
复制
if((digits[i] + rhs.digits[i]) > 9)
{
     digits[i+1] = digits[i+1] + 1 ;
}

这可不妙。例如,如果运行以下代码:

代码语言:javascript
复制
bigint x("5");
bigint y("6");

x+y;
x+y;

你最终会得到17岁的x

接下来,您将按值传递bigint::operator参数,您可能应该通过引用(&)传递这些参数。

最后,这里的缩进是恶意的:

代码语言:javascript
复制
while(new_digits[null] != '\0')
    ++null;
    --null;

这里的循环体是什么?是的,不是第三行。请不要这样缩进代码,它会让小猫哭。至少编程小猫。

注意:我没有看到任何动态内存分配代码,这意味着digits可能是一个静态大小的数组。如果你要这么做的话,一定要确保它足够大,并且要注意,如果超过它的大小,你就会崩溃。

票数 3
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/9154792

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档