自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(6)
  • 资源 (3)
  • 收藏
  • 关注

原创 bigmathcs

using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;namespace BigMathLib{ public class BigMath { // 16/10 = 1.205/1 // 4G/10000 = 1.205*/4 public int Precision; public int Exponen

2010-07-23 17:27:00 108

原创 bigmathdll

void add(unsigned int* Num_Array, int Precision, int* pSign, int* pExponent, unsigned int* num_Num_Array, int num_Sign, int num_Exponent);int normalize(unsigned int* b, int len);void divide(int* rem0, int* rem1, unsigned int* rem_val, unsigned int* b,

2010-07-23 17:25:00 96

原创 div

//divint bitLen(int w){ int i; _asm { mov eax,w cmp eax,1 off; i--) { unsigned int b = c; c = val[i - 1]; val[i] = (c > n); } val[off] >>= n;}void primitiveLeftShiftOff(unsigned int* val, int off, int len, int n){

2010-07-23 17:23:00 140

原创 add

// 加法,被加数高幂+加数低幂 或者 等幂相加 100 + 10 -》110void addA(unsigned int* Num_Array, int Precision, int* pExponent, unsigned int* num_Num_Array, int num_Exponent){    int i;    //被加数幂    int Exponent = *pExponent;    //幂差    int disExp = Exponent - num_

2010-07-23 17:21:00 151

原创 mul

void mul(unsigned int* Num_Array, int Precision, int* pSign, int* pExponent, unsigned int* num_Num_Array, int num_Sign, int num_Exponent){    int i;    //临时空间 1x    unsigned int* buf_Num_Array = new unsigned int[Precision];    for (i = 0; i    

2010-07-23 17:21:00 143

原创 物理模拟

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace physics{ public partial class Form1 : Form {  public Form1()  {   InitializeComponent();

2010-07-14 16:18:00 142

awtsample awtsample

awtsample awtsample awtsample awtsample

2010-01-16

RSA文本加密

可执行jar包,有jre环境的双击直接运行<br><br>先生成公钥发给对方,对方接受公钥,加密文本,发回,自己再解密<br>对方的操作同上<br><br>基于不对称加密算法,公钥和加密后的数据即使被截获也无法破解

2007-08-31

mini webServer

mini webServer<br><br>支持功能:<br>servlet(与tomcat不完全兼容)<br>jsp(与tomcat不完全兼容)<br>文件上传<br>断点续传<br>安全连接(SSL)<br>

2007-08-24

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除