代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C
】
高精度数处理
作者:
/ 发布于
2014/5/22
/
421
// project name: rsa // file name:LargeInt.h // author: ism // date: 2012 - 5 - 1 #include <iostream> using namespace std; #define LENGTH 1000 class LargeInt { public: // data section int a[LENGTH]; int top; // reload operations friend LargeInt operator + ( LargeInt m, LargeInt n ); friend LargeInt operator - ( LargeInt m, LargeInt n ); friend LargeInt operator * ( LargeInt m, LargeInt n ); friend LargeInt operator / ( LargeInt m, LargeInt n ); //friend LargeInt operator = ( LargeInt m ); friend bool operator >= ( LargeInt m, LargeInt n ); friend ostream& operator << (ostream& os, LargeInt m); //constructe functions LargeInt(); //other functions void doEmpty(); void setValue(string s); void manageIt(); //void print(); int getTop(); }; ////////////////////////////////////////////////////////////////////// !done void LargeInt::doEmpty() { for(int i = 0; i < LENGTH; i++) { a[i] = 0; } } ////////////////////////////////////////////////////////////////////// !done bool operator >= ( LargeInt m, LargeInt n ) { int current = LENGTH -1 ; while( current >= 0 && m.a[current] == n.a[current] ) { current--; } if( current == -1) { return true; } else if( m.a[current] > n.a[current] ) { return true; } else { return false; } } ////////////////////////////////////////////////////////////////////// !done void LargeInt::manageIt() { for(int i = 0; i < LENGTH-1 ; i++) { if( a[i] >= 0 ){ a[i+1] += a[i] / 10; a[i] %= 10; } else { a[i+1] -= 1; a[i] += 10; } } } ////////////////////////////////////////////////////////////////////// !done LargeInt::LargeInt() { top = -1; for(int i = 0; i < LENGTH; i++) { a[i] = 0; } } ////////////////////////////////////////////////////////////////////// !done LargeInt operator + (LargeInt m, LargeInt n) { LargeInt result; for(int i = 0; i < LENGTH; i++) { result.a[i] = m.a[i] + n.a[i]; } result.manageIt(); return result; } ////////////////////////////////////////////////////////////////////// !done LargeInt operator - (LargeInt m, LargeInt n) { LargeInt result; for(int i = 0; i < LENGTH; i++) { result.a[i] = m.a[i] - n.a[i]; } result.manageIt(); return result; } ////////////////////////////////////////////////////////////////////// !done LargeInt operator * (LargeInt m, LargeInt n) { // need an error for computing the multiply operation for over flow int m_top = m.getTop(); int n_top = n.getTop(); LargeInt result; for(int i = 0; i <= n_top; i++) { for(int j = 0; j <= m_top; j++) { result.a[i+j] += n.a[i] * m.a[j]; } result.manageIt(); } return result; } ////////////////////////////////////////////////////////////////////// LargeInt operator / (LargeInt m, LargeInt n) { } ////////////////////////////////////////////////////////////////////// !done void LargeInt::setValue(string s) { doEmpty(); int _s_length = s.size(); for(int i = 0; i < _s_length; i++) { a[i] = s[ _s_length - i - 1 ] - 48; } } ////////////////////////////////////////////////////////////////////// ! done ostream& operator << (ostream& os, LargeInt m) { int _m_top= m.getTop(); if( _m_top < 0 ) { _m_top = 0; } for(int i = _m_top; i >= 0; i--) { os << m.a[i]; } return os; } ////////////////////////////////////////////////////////////////////// !done int LargeInt::getTop() { int top = LENGTH - 1; while(a[top] == 0) { top--; } return top; } ////////////////////////////////////////////////////////////////////// //end //ism
试试其它关键字
高精度数
同语言下
.
获取手机通讯录 iOS去除数字以外的所有字符
.
异步加载音乐等资源
.
交通罚单管理系统
.
freemark实现,简单的替换
.
计算斐波那契数列
.
base64解码 包括解码长度
.
图像显示
.
冒泡排序
.
输入十进制数,输出指定进制
.
链式栈
可能有用的
.
实现测量程序运行时间及cpu使用时间
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
贡献的其它代码
Label
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3