CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 WEB源码 JSP源码/Java 搜索资源 - large integer

搜索资源列表

  1. BigIntMultiplication

    0下载:
  2. 大整数乘法例子代码 /* 递归边界,如果是1位二进制数与1位二进制数相乘,则可以直接计算 */ /*累计做1位二进制乘法运算的次数*/ /* return (X*Y) */ /* 计算n的值 */ /* 把X和Y拆分开来,令X=A*2^(n/2)+B, 左移位运算,mod = 1<<(n/2) */ /* 计算XY=AC*2^n+(AD+CB)*2^(n/2)+BD */ /* 计算A*C,再向左移n位 */ /* 递归计算A*D */ /* 递
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:1532
    • 提供者:小城
  1. cctttt

    0下载:
  2. 输入一组整数存放在数组中,比较并输出其中的最大值和最小值,再将数组元素从小到大排序并输出。-importation of a group integer stored in the array, the more output and the maximum and minimum. then array elements from small to large sequencing and output.
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:4189
    • 提供者:刘建强
  1. BigNumberCounter

    0下载:
  2. 大整数计算器,数据结构里一个很著名的算法,文本计算,也是同学编的。-large integer calculators, data structure, a well-known algorithm, text, as well as classmates series.
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:26944
    • 提供者:孙一
  1. javacharupaixu

    0下载:
  2. 在磁盘文件中有10个整数按从小到大的顺序排列。在其中插入一个整数,插入后数据依然有序-disk in a document by the 10 integers from small to large in chronological order. In an integer insert, insert after the data remains orderly
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:3226
    • 提供者:haohao
  1. java

    1下载:
  2. 输入5个学生的成绩(从0到100的整数),并将这5个数保存到文件“data.txt”中。然后再编写一个程序,从文件“data.txt”中读取这5个学生的成绩,计算并输出它们的平均数,然后再按从小到大的顺序输出这5个学生的成绩。 -The importation of five pupils (from 0 to 100 integer), and 5 the number of files saved to the " data.txt" in. The preparat
  3. 所属分类:Java Develop

    • 发布日期:2017-04-02
    • 文件大小:623
    • 提供者:kevin
  1. LargeIntegerOpertion

    0下载:
  2. 这是一个用java编写的大整数加减的算法,可以输出负数,绝对正确可用。-This is a arithmetic of large integer opertion and can print negative number.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-14
    • 文件大小:4207
    • 提供者:
  1. e9_3

    0下载:
  2. Java 实现超大整数(可大于100位)的加减。-Java to achieve large integer (which can be greater than 100) the addition and subtraction.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-14
    • 文件大小:3783
    • 提供者:tt
  1. dashu

    0下载:
  2. 大数乘法,设x和y都是n位的二进制整数,计算他们乘积xy,吧整数x和y各分2段-Multiplication of large numbers, let x and y are n-bit binary integer, calculate their product xy, it integers x and y sub-paragraph 2
  3. 所属分类:Java Develop

    • 发布日期:2017-04-01
    • 文件大小:530
    • 提供者:何风
  1. MagicSquare

    0下载:
  2. magicCube.jar为可执行文件,需要在java环境下运行,需要计算机配置好jre;在输入页面输入一个正整数,当这个正整数不大于30时,会弹出页面显示幻方;当输入数据大于30时,数字在页面上显示会非常拥挤,不便于查看,所以程序将求出的幻方存储到d:/magicCube.txt文件中,请到该目录下查询。-magicCube.jar for the executable file, you need to run the java environment, you need a compute
  3. 所属分类:Java Develop

    • 发布日期:2017-04-02
    • 文件大小:414646
    • 提供者:朱朱
  1. test1

    0下载:
  2. 分治法实现大整数乘法,其实应该用数组来保存大整数的,再考虑如何去完善这个程序。但分治算法的核心思想已经尽在其中了。-Divide and conquer method for large integer multiplication
  3. 所属分类:JavaScript

    • 发布日期:2017-04-10
    • 文件大小:765
    • 提供者:张讯
  1. exception-handling

    0下载:
  2. 输入输出与异常处理 通过本实验,初步掌握Java中的IO流的用法,并能够在程序中正确使用异常处理语法。 假设文本文件abc1.txt中有一些数据,分为若干行,每行有一些个数不等的整数,用空格隔开。写一个程序读入该文件中的数据,对每行数据从小到大进行排序,然后按行输出到文本文件abc2.txt中,输出的文件中数据的格式与输入文件相同。-Input and output with exception handling through this experiment, the initial
  3. 所属分类:JavaScript

    • 发布日期:2017-11-12
    • 文件大小:13644
    • 提供者:shasha
  1. IntegerMultiply

    0下载:
  2. 算法分析与设计 用递归分治算法解决大整数乘积问题(java源码)-Algorithm Analysis and Design Recursive divide and conquer algorithm to solve the problem of large integer multiplication. (Java source code)
  3. 所属分类:Java Develop

    • 发布日期:2017-11-14
    • 文件大小:636
    • 提供者:jing
  1. GuessNumberGame

    0下载:
  2. 每次游戏程序随机产生一个0-9之间的整数,要求玩家输入自己猜的数字,并对用户输入数字进行检查,进行如下提示:  如果用户猜对了,则提示:恭喜你,猜对了。结束本次游戏。  如果用户猜错了,则提示:你猜的数字太(大或小)了。要求用户继续猜。 如果连续3次没有猜对,则提示:游戏失败。 一次游戏结束时,提示用户是否继续新的游戏,果用户选择继续,则开始新一次游戏,否则输出:你共进行了XXX次游戏,成功XXX次,失败XXX次。然后结束程序运行。 -Eac
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:2309
    • 提供者:冯汝杰
  1. Guessnumber

    0下载:
  2. 编写一个猜数程序,该程序随机在1到1000的范围中选择一个供用户猜测的整数。界面上提供一个文本框来接收用户输入的猜测的数,如果用户猜得太大,则背景变为红色,如果猜得太小,背景变为蓝色。用户猜对后,文本框变为不可编辑,同时提示用户猜对了。界面上提供一个按钮,使用户可以重新开始这个游戏。在界面上还需显示用户猜测的次数。-Write a guessing program that randomly selects an integer for the user to guess at the rang
  3. 所属分类:JavaScript

    • 发布日期:2017-04-09
    • 文件大小:24572
    • 提供者:段盈盈
  1. java

    0下载:
  2. 编写一个应用程序,完成一个猜数字的游戏。 随机产生一个1到1000的整数,用户在文本框中输入猜的数字,如果数字比实际数字大则在状态栏中显示“太大了”,反之,则显示“太小了”。如果正确,则打印“恭喜你答对了”,并重新开始游戏。 -Write an application, complete a guessing game. Randomly generate an integer from 1 to 1000, the user enters the number in the text
  3. 所属分类:JavaScript

    • 发布日期:2017-05-18
    • 文件大小:4819918
    • 提供者:wangyuting
  1. GuessNumber

    0下载:
  2. 以对话框的形式做一个程序,要求随机生成一个0-100的整数,使用者同时输入一个数,若这两个数相等,则提示猜中。若不相等,则提示是偏大还是偏小,直到猜中为止。-In the form of the dialog box to do a procedure that requires a randomly generated integer 0-100, while the user to enter a number, if these two numbers are equal, then pr
  3. 所属分类:Java Develop

    • 发布日期:2017-04-11
    • 文件大小:849
    • 提供者:韩某
  1. BigInteger

    0下载:
  2. BigInteger是一个自定义的大整数数据结构。可以用数组的形式实现大整数的各种操作。-BigInteger is a large integer data structure a custom. Can be achieved using the array form various operations of large integer.
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:6787
    • 提供者:Simon-4
  1. ClassInteger

    0下载:
  2. C++ 大整数类 欢迎各位下载测试 可联系285153841@qq.com-C++ class to welcome you to download large integer test may contact 285153841@qq.com
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:2518
    • 提供者:fang0628406
  1. HugeInteger

    0下载:
  2. 创建一个大整数类HugeInteger,该类用一个40个元素的数组来存放一个大整数(最多不超过40位)。(1)定义几个大整数算术运算的成员函数,包括inputHugeInteger、outputHugeInteger、addHugeIntegers和substractHugeIntegers-Create a large integer class HugeInteger, with such an array of 40 elements to store a large integer (u
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:1855
    • 提供者:李四
  1. big_jiecheng

    0下载:
  2. java编程,解决大数据的阶乘运算,一般程序只能承载100以内的阶乘运算,超出则运算错误,该程序不限,只要在整数内都可以运算-Java programming to solve the large data factorial operation, the general procedure can only carry less than 100 factorial operation, beyond the operation error, the program is not limite
  3. 所属分类:Java Develop

    • 发布日期:2017-05-04
    • 文件大小:4012
    • 提供者:樱桃
« 12 »
搜珍网 www.dssz.com