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

搜索资源列表

  1. EX_4_1

    0下载:
  2. 编制一个算术表达式求值的程序 (1)以十字链表表示稀疏矩阵,实现两个矩阵相加,相减和相乘的运算。稀疏矩阵的输入形式采用三元组表示,而运算结果的矩阵则以通常的阵列形式列出。 (2)首先应输入矩阵的行数和列数,并判别给出的两个矩阵的行、列数对于所要求作的运算是否匹配。 (3)程序对三元组的输入顺序没有特定的要求,可以以任何的次序输入,程序会对其进行查找,插入到适合的位置上。 (4)在用三元组表示稀疏矩阵时,相加或相减所得结果矩阵应该另生成,乘积矩阵也用十字链表存放。 -compi
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:2045
    • 提供者:战天
  1. MultiplicationOfLargeNumbers

    0下载:
  2. 用一个整型数组表示一个大数,数组的每个元素储存大数的一位数字,则实际的大数d表示为: d=a[k]*10的k-1次幂+a[k-1]*10的k-2次幂+......+a[2]*10+a[1] 其中a[0]保存该大数的位数. (2),实现两个大数相乘. (3),再此基础上实现两个大数相除 -With an integer array to represent a large number, every element of the array storage of large numb
  3. 所属分类:Console

    • 发布日期:2017-04-07
    • 文件大小:562
    • 提供者:马值
  1. MatrixMultiplication

    0下载:
  2. 数组的任意阶相乘,首先实现了阶数是2的n次幂的乘法。-Any order by multiplying the array, the first order is to achieve a power of 2 n multiplication.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-14
    • 文件大小:2785
    • 提供者:zz
  1. long_factorial

    0下载:
  2. 两个大整数相乘,由于long int型的位数也不够,所以要用数组来表示,此程序即是这个功能。-Multiplying two large integers, the number of bits as long int type is not enough, so use an array to indicate that this procedure is this.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:807
    • 提供者:青青
  1. 20110305012

    0下载:
  2. 数组倒置,数列相乘,数组的输入输出 求数组中最大的数-Array of inverted series array of input and output requirements by multiplying the largest number of array
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-11
    • 文件大小:857
    • 提供者:东方寒永
  1. tset3

    0下载:
  2. /用构造函数记录二维数组的大小,/析构函数,/对数组的赋值,/输入数据,/显示数据,/矩阵的相乘-/ Constructor record with a two-dimensional array of size/destructor/assignment of the array,/input data/display data,/matrix multiplication
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:887
    • 提供者:韩雪
  1. lianbiao

    0下载:
  2. 用链表计算两个大整数相乘。要求中间结果不得使用数组来存储。-Calculated as a linked list two big integers. The intermediate results may not use an array to store.
  3. 所属分类:assembly language

    • 发布日期:2017-04-24
    • 文件大小:197287
    • 提供者:张天天
  1. muti

    0下载:
  2. 矩阵相乘,函数实现,可以传递N维数组,c语言实现-Matrix multiplication, function, you can pass the N-dimensional array c language
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:616
    • 提供者:李扬
  1. Ldashuxiangcha

    0下载:
  2. 大数据相乘,多字节数据之间的乘乘法运算,使用数组存储 -Large data multiplied by multiplication between multi-byte data, the use of an array of storage
  3. 所属分类:Windows Develop

    • 发布日期:2017-12-05
    • 文件大小:801
    • 提供者:tuition
  1. Matrix

    0下载:
  2. 矩阵相乘(三元组) 数组的应用,数据结构中的-Matrix multiplication (triples)
  3. 所属分类:Other systems

    • 发布日期:2017-12-06
    • 文件大小:1264
    • 提供者:Tony
  1. juzhenxiangcheng

    0下载:
  2. 编写程序,可以实现m*n矩阵和n*p矩阵相乘。m,n,p均小于10,矩阵元素为整数。 分析: 首先我们可以根据题意写出函数头。可以定为void MatrixMutiply(int m,int n,int p,long lMatrix1[MAX][MAX],long lMatrix2[MAX][MAX],long lMatrixResult[MAX][MAX]),其中lMatrix1和lMatrix2分别是输入的m*n矩阵和n*p矩阵,lMatrixResult是输出的m*p矩阵。 因
  3. 所属分类:Other Games

    • 发布日期:2017-11-24
    • 文件大小:11128
    • 提供者:郑雯雯
  1. dashuxiangcheng

    0下载:
  2. 计算乘积超过计算机内存的数,利用数组存储大数,实现大数相乘-Calculate the product of more than the number of the computer' s memory, the use of an array of storage of large numbers, large numbers multiplied
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-16
    • 文件大小:1179
    • 提供者:小山
  1. juzhendejiajianchengchu

    0下载:
  2. 用二维数组表示矩阵,编写函数实现如下功能,要求所编写的函数具有较好的通用性,不要固定矩阵的大小。 1矩阵输入。 2)矩阵输出。 3矩阵转置。 4)矩阵相加。 5)矩阵相乘。 6)写主函数,完成对以上函数的调用。 -Two-dimensional array representation matrix, write a function to achieve the following functions, requiring written function has
  3. 所属分类:assembly language

    • 发布日期:2017-12-08
    • 文件大小:672
    • 提供者:长城
  1. SparseMatrix

    0下载:
  2. 用C++语言,通过数组实现疏散矩阵的转置和相乘等各种变换-With C++ language, through the array to achieve evacuation matrix transpose, and multiply, and other transformation
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-21
    • 文件大小:116117
    • 提供者:刘晓晶
  1. xishujuzhendexiangcheng

    0下载:
  2. 数据结构中用三元数组实现稀疏矩阵的相乘算法源代码-Data structures implemented using triplet sparse matrix multiplication algorithm source code
  3. 所属分类:Data structs

    • 发布日期:2017-11-29
    • 文件大小:1439
    • 提供者:赵扬
  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. Plolynomial-plus

    0下载:
  2. 数据结构的一道经典题目,是很好的源代码。一元多项式相乘,用数组实现-Data structure a classic topic, is a good source code. One yuan polynomial multiplication using arrays to achieve
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:730
    • 提供者:leoo
  1. 11

    0下载:
  2. 一、 输入三个数,求最大值。 二、 任意输入10个数,进行选择排序。 三、 任意输入10个数,进行冒泡排序。 四、 将二维数组行列互换。 实现2*2矩阵的相乘。 -First, enter the three numbers, find the maximum value. Second, any input 10 numbers, choose Sort. Third, any input 10 numbers, bubble sort. Fourth, the ranks
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:5474
    • 提供者:hr
  1. signalprocessingfunction

    0下载:
  2. ( 1)二维矩阵相乘的程序 (2)n阶矩阵求逆 (3)不同类型的一维、二维、三维数组空间申请和释放 (4)两个向量互相关 (5)利用第一行和第一列数据,构造托普里兹矩阵 所有程序包含详细说明和验证程序-(1) matrix multiplication (2)matrix inversion (3)vector correlation (4)space application for matrix (5)construct the toepl
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-05-03
    • 文件大小:899262
    • 提供者:will
  1. shuzhif

    0下载:
  2. 从文件输入任意M进制的数,转换为十进制数,以字符形式从文件输入数x,算法实现将x的每一位数字与M的幂相乘最后相加。将十进制转换为其他任意进制有利用数组(shi_array)和栈(initstack)两种方法。将M进制的数转换为其他任意进制时,需要先将M进制的数x转换为十进制数,再利用shi_array和栈函数实现十进制向其他进制的转换。要特别注意M进制的数x中包含的数字不能超过M以及字符型的数字包括1~9和A~F。将结果再保存在文件中。-Input a file of any M-ary nu
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-07
    • 文件大小:1082328
    • 提供者:李寻欢
« 1 23 »
搜珍网 www.dssz.com