operator

bool operator==(const CBigInteger& x, const CBigInteger&y)
{
if(x.sign != y.sign) return false;
if(x.num != y.num) return false;
for(int i=0; i < x.num; i++)
{
if(x.val[i] != y.val[i])
return false;
}
return true;
}co

相關文章
相關標籤/搜索