代码搜索:BigInteger
找到约 2,461 项符合「BigInteger」的源代码
代码结果 2,461
www.eeworm.com/read/463889/7173854
cs biginteger.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Festel
{
public class BigInteger
{
// maximum length of the BigInteger in uin
www.eeworm.com/read/397549/8039273
java biginteger.java
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
www.eeworm.com/read/326148/13161863
cc biginteger.cc
/*
* Matt McCutchen's Big Integer Library
*/
#include "BigInteger.hh"
// MANAGEMENT
// Assignment operator
void BigInteger::operator =(const BigInteger &x) {
// Calls like a = a have no effect
if
www.eeworm.com/read/326148/13161871
hh biginteger.hh
/*
* Matt McCutchen's Big Integer Library
*/
#ifndef BIGINTEGER
#define BIGINTEGER
#include "BigUnsigned.hh"
/*
* A BigInteger object represents a signed integer of size
* limited only by available
www.eeworm.com/read/109684/6172769
java biginteger.java
/*
* Copyright (C) 1995, 1996 Systemics Ltd (http://www.systemics.com/)
* All rights reserved.
*
* This library and applications are FREE FOR COMMERCIAL AND NON-COMMERCIAL USE
* as long as the co
www.eeworm.com/read/104260/6205063
c biginteger.c
/*
* java.math.BigInteger.c
*
* Copyright (c) 1996, 1997, 1998
* Transvirtual Technologies, Inc. All rights reserved.
*
* See the file "license.terms" for information on usage and redistri
www.eeworm.com/read/104260/6205953
java biginteger.java
/*
* Java core library component.
*
* Copyright (c) 1997, 1998
* Transvirtual Technologies, Inc. All rights reserved.
*
* See the file "license.terms" for information on usage and redistri
www.eeworm.com/read/263437/11362666
java biginteger.java
/*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
/*
* @(#)BigInteger.java 1.55 03/01/29
*/
package java.math;
www.eeworm.com/read/263154/11373197
txt biginteger.txt
#include
#include
#include
#include
using namespace std;
#define MAXN 9999
#define DLEN 4
class BigNum{
private:
int a[300];
int len;
pub
www.eeworm.com/read/260458/11724012