代码搜索:BIgInteger
找到约 2,461 项符合「BIgInteger」的源代码
代码结果 2,461
www.eeworm.com/read/430974/8715279
cs biginteger.cs
//************************************************************************************
// BigInteger Class Version 1.03
//
// Copyright (c) 2002 Chew Keong TAN
// All rights reserved.
//
// Perm
www.eeworm.com/read/378683/9218355
cs biginteger.cs
//************************************************************************************
// BigInteger Class Version 1.03
//
// Copyright (c) 2002 Chew Keong TAN
// All rights reserved.
//
// Perm
www.eeworm.com/read/371086/9569067
h biginteger.h
#ifndef BIGINTEGER_H_H
#define BIGINTEGER_H_H
#include
#include
#include
#include
#include "GlobalObject.h"
using namespace std;
const int defaultSi
www.eeworm.com/read/356335/10230849
cc biginteger.cc
#include "BigInteger.hh"
void BigInteger::operator =(const BigInteger &x) {
// Calls like a = a have no effect
if (this == &x)
return;
// Copy sign
sign = x.sign;
// Copy the rest
mag = x.mag
www.eeworm.com/read/356335/10230851
hh biginteger.hh
#ifndef BIGINTEGER_H
#define BIGINTEGER_H
#include "BigUnsigned.hh"
/* A BigInteger object represents a signed integer of size limited only by
* available memory. BigUnsigneds support most mathema
www.eeworm.com/read/355148/10290757
cpp biginteger.cpp
#include
#include
#define DIGIT 4
#define DEPTH 10000
#define MAX 100
typedef int bignum_t[MAX+1];
int read(bignum_t a,istream& is=cin){
char buf[MAX*DIGIT+1],c
www.eeworm.com/read/160841/10488043
class biginteger.class
www.eeworm.com/read/276337/10746525
cs biginteger.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace RSA
{
public sealed class BigInteger
{
private const int maxLength = 80; //最大32位无符号整数长度,80*32 = 25
www.eeworm.com/read/275823/10794658
java biginteger.java
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
/*
* @(#)BigInteger.java 1.70 05/08/09
*/
package java.math;
www.eeworm.com/read/420123/10815860
cpp biginteger.cpp
#include
#include
#include
#include
#include
using namespace std;
class DividedByZeroException {};
class BigInteger
{
private:
vector