integer of unlimited size(大数类的加减乘)
闲着,于是写了个大数类。加减乘都不难,所以实现了。除法得以后有空再慢慢研究的。
// bigintJ.h
//
#pragma once
#include "link_list.h"
class BigInt
{
public:
BigInt(const char* nums);
BigInt(const char* nums, const int c);
BigInt
原创
2012-09-04 12:44:03 ·
441 阅读 ·
0 评论