CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - Multiplication

搜索资源列表

  1. Multiplication-table

    0下载:
  2. 这个是c语言写的99乘法表,增强版的,修改了排序方式。不会出现小于10的数字列和大于等于10的间隔大-This is the c language 99 multiplication table, enhanced version of the modified Sort by. Interval of not less than 10 numeric and greater than or equal to 10
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-11
    • 文件大小:6262
    • 提供者:马菁元
  1. matrix-multiplication

    0下载:
  2. 集群中,在mpi环境下采用c++语言编写的程序,解决了矩阵乘法-the application of clusters solving matrix multiplication inmpi,using C++
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-17
    • 文件大小:824826
    • 提供者:xiaohan
  1. Large-Integer-Multiplication-

    0下载:
  2. 大整数相乘,是用数组的形式模拟乘法,简单,很实用-Large integer multiplication, is to use an array of analog multiplication, simple and very practical
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:670
    • 提供者:czy
  1. Large-integer-multiplication

    0下载:
  2. 两个大整数(字符串的形式)相剩,并显示相乘结果-Large integer multiplication
  3. 所属分类:assembly language

    • 发布日期:2017-04-01
    • 文件大小:16413
    • 提供者:tt
  1. Precision-multiplication

    0下载:
  2. 高精度乘法的Pascal源代码文件,求任意位数的乘法运算。-Precision multiplication Pascal source code files, find any digit adder.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-09
    • 文件大小:529
    • 提供者:王海涛
  1. java-program-for-matrix-multiplication

    0下载:
  2. java program for matrix multiplication
  3. 所属分类:Java Develop

    • 发布日期:2017-04-15
    • 文件大小:5940
    • 提供者:Balasamy
  1. Polynomial-multiplication

    0下载:
  2. 该程序能够实现数学问题中多项式之间的相乘运算-The program can achieve math problems in polynomial multiplication operation between
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:605
    • 提供者:diqiuwuliuxue
  1. Multiplication-table

    0下载:
  2. 编写程序,打印下列九九乘法表。 本源代码用于实现99乘法表的输出。-Write a program to print the following multiplication table. Source code for output to achieve 99 multiplication table.
  3. 所属分类:JavaScript

    • 发布日期:2017-04-07
    • 文件大小:914
    • 提供者:Icyyear
  1. large-integer-multiplication

    0下载:
  2. 算法设计与分析之大整数乘法讲解有需要的可以看一下-Algorithm design and analysis of large integer multiplication explain the need to look at
  3. 所属分类:Algorithm

    • 发布日期:2017-04-06
    • 文件大小:765450
    • 提供者:xieyanyan
  1. Large-integer-multiplication

    0下载:
  2. 高精度大整数乘法,对于大整数比较方便的输入方法是,按字符型处理,两个成熟存储在字符串数组s1,s2中,计算结果存储在整型数组a中。-Precision large integer multiplication, more convenient for large integer input method is handled by the character, two mature stored in an array of strings s1, s2, the calculation res
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3110
    • 提供者:martian
  1. multiplication

    0下载:
  2. Jcreator环境,将乘法运算转化为位移和加法运算-do multiplication with displacement and addition
  3. 所属分类:JavaScript

    • 发布日期:2017-04-10
    • 文件大小:1026
    • 提供者:Shang Qingmin
  1. matrix-multiplication

    0下载:
  2. c++编写的矩阵乘法的主从进程,用mpi实现-c++ prepared from the master matrix multiplication process, achieved with mpi
  3. 所属分类:MPI

    • 发布日期:2017-04-07
    • 文件大小:2439
    • 提供者:lucy
  1. matrix-multiplication-and-inverse

    0下载:
  2. 这是用C++做矩阵求逆和矩阵相乘,可以解简的线性方程。已验证,互相交流~-This is done using C++ matrix inversion and matrix multiplication, linear equations can be solved。
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:1377
    • 提供者:赵露
  1. large-integer-multiplication

    0下载:
  2. 链表实现大整数乘法,其中以时间为种子随机产生1000位数,经过暂停继续产生第二个1000位数,使用回溯递归做乘法。-List realize large integer multiplication, in which time is 1000 bits randomly generated seed, after the suspension continue to generate a second 1000 digits, using recursive backtracking to d
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1642
    • 提供者:何硙卓
  1. multiplication-tables

    0下载:
  2. 输出9*9乘法口诀表,可以显示9*9乘法口诀表-Output 9* 9 multiplication tables, you can display 9* 9 multiplication tables
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:3687
    • 提供者:陈雨晨
  1. One-yuan-polynomial-multiplication

    0下载:
  2. 题目说明:   要求采用链表形式,求两个一元多项式的乘积:h3 = h1*h2。函数原型为:void multiplication( NODE * h1, NODE * h2, NODE * h3 )。 输入:   输入数据为两行,分别表示两个一元多项式。每个一元多项式以指数递增的顺序输入多项式各项的系数(整数)、指数(整数)。   例如:1+2x+x2表示为:<1,0>,<2,1>,<1,2>, 输出:   以指数递
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:1125
    • 提供者:杨旭光
  1. multiplication

    1下载:
  2. 要求采用链表形式,求两个一元多项式的乘积:h3 = h1*h2。函数原型为:void multiplication( NODE * h1, NODE * h2, NODE * h3 )。-Require the use of a linked list, find the product of two one yuan polynomial: h3 = h1* h2. Function prototype: void multiplication (NODE* h1, NODE* h2, NOD
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1064
    • 提供者:qiang22
  1. big-number-multiplication

    0下载:
  2. 大数相乘,用于当数据大小超过编译器所表示数据的大小-Multiplication of large Numbers for when the size of the data size than indicated by the compiler
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:986
    • 提供者:哈哈
  1. matrix-multiplication

    0下载:
  2. 实现m*n矩阵和n*p矩阵相乘。m,n,p均小于10,矩阵元素为整数-Realization of m* n matrix and n* p matrix multiplication. m, n, p are less than 10, the matrix elements of an integer
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:1305
    • 提供者:yan bin
  1. multiplication by bit shifting and addition

    0下载:
  2. multiplicate two integers by bit shifting and addition
  3. 所属分类:其它

    • 发布日期:2014-08-21
    • 文件大小:3096
    • 提供者:pizzahawaii
« 1 2 3 4 5 6 78 9 10 11 12 ... 50 »
搜珍网 www.dssz.com