搜索资源列表

  1. 多项式求和

    0下载:
  2. 1、 程序功能:本程序实现多项式的求和运算,在遇到指数相同时实行系数相加或相减,指数不同的照原样输出。最后分别输出系数和指数。 2、 运行环境:C++ 3、 算法描述:首先,把输入的的多项式进行分析,把所有的系数放入一个单链表中llist,指数放入另一个单链表llist2中。然后再在指数链表中比较有没有相同的指数,如果有相同的指数,那就把相对应的系数进行求和,并把求和结果归并到llist2中;如果指数不相
  3. 所属分类:编辑框

    • 发布日期:2008-10-13
    • 文件大小:6.09kb
    • 提供者:王俊
  1. 用三元组表实现稀疏矩阵的转置运算

    0下载:
  2. 用三元组表实现稀疏矩阵的转置运算 一个阶数较大的矩阵中的非零元素个数S相对于矩阵元素的总个数t很小时,即非 零元素个数s占矩阵元素的总个数t的25%~30%时,称该矩阵为稀疏矩阵称. 由于稀疏矩阵中非零元素的分布没有任何规律,在存储非零元素时,必须保存该非 零元素所对应的行下标和列下标.这样,存储的每个稀疏矩阵中的非零元素都需要(行 下标,列下标,元素值)三个参量来唯一确定,将这种存储结构称为稀疏矩阵的三元组
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2.72kb
    • 提供者:snow
  1. devotion

    0下载:
  2. 利用数组求任意椭圆的长轴,中心点坐标,以及相应的下标。-arbitrary use of arrays for the long axis of the ellipse, the center coordinates and the corresponding indices.
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:23.56kb
    • 提供者:lxg
  1. bmp2source

    0下载:
  2. This program reads a 24bpp, 8bpp or 4bpp Microsoft Windows(TM) .BMP file and converts it into a C structure with the following information: the bitmap width, the bitmap height, the RGB color palette if the bitmap is 8bpp
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2008-10-13
    • 文件大小:45.11kb
    • 提供者:赵东
  1. jumbodepp

    0下载:
  2. 实现:实指数、复指数、不同长度序列求和、y(n)=x(-n)、y(n)=x(n-k)-realization : real indices Minute index, different length sequences for peace, y (n) = x (-n), y (n) = x (n-k)
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:1000byte
    • 提供者:zh
  1. 穷举算法

    0下载:
  2. 在许多情况下我们需要穷举组合的算法,比如密码词典。这个算法的关键是密码下标进位的问题。另外本例子中的写文件语句效率比较低,为了降低算法复杂度没有优化。如果要提高写文件的效率,可以使用缓冲区,分批写入。-in many cases we need exhaustive combination of algorithms such as password dictionary. The algorithm is the key indice
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:1.24kb
    • 提供者:凌继文
  1. 2Dcrystals

    0下载:
  2. Negative principal refractive indices and accidental isotropy in two-dimensional photonic crystals with an asymmetrical unit ce
  3. 所属分类:汇编语言

    • 发布日期:2008-10-13
    • 文件大小:583.07kb
    • 提供者:Qtai
  1. find_nearest_neighbours

    0下载:
  2. % [nearest_neighbours] = find_nearest_neighbours( database, desc, max_dist ) % Find the indices of the nearest neighbours of the given desriptors in the近邻点寻找算法,在非线性时间序列中很有用,是常用的算法
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:900byte
    • 提供者:zhxj
  1. 等值线函数

    0下载:
  2. 等值线函数.// As this code is ported from FORTRAN-77, please be very careful of the // various indices like ilb,iub,jlb and jub, remeber that C/C++ indices // starts from zero (0)-contour function. / / As this code is ported
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:3.12kb
    • 提供者:何阳
  1. 穷举算法

    0下载:
  2. 在许多情况下我们需要穷举组合的算法,比如密码词典。这个算法的关键是密码下标进位的问题。另外本例子中的写文件语句效率比较低,为了降低算法复杂度没有优化。如果要提高写文件的效率,可以使用缓冲区,分批写入。-in many cases we need exhaustive combination of algorithms such as password dictionary. The algorithm is the key indice
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-11-30
    • 文件大小:1kb
    • 提供者:凌继文
  1. 等值线函数

    1下载:
  2. 等值线函数.// As this code is ported from FORTRAN-77, please be very careful of the // various indices like ilb,iub,jlb and jub, remeber that C/C++ indices // starts from zero (0)-contour function.// As this code is ported fr
  3. 所属分类:绘图程序

    • 发布日期:2024-11-30
    • 文件大小:3kb
    • 提供者:何阳
  1. 多项式求和

    0下载:
  2. 1、 程序功能:本程序实现多项式的求和运算,在遇到指数相同时实行系数相加或相减,指数不同的照原样输出。最后分别输出系数和指数。 2、 运行环境:C++ 3、 算法描述:首先,把输入的的多项式进行分析,把所有的系数放入一个单链表中llist,指数放入另一个单链表llist2中。然后再在指数链表中比较有没有相同的指数,如果有相同的指数,那就把相对应的系数进行求和,并把求和结果归并到llist2中;如果指数不相
  3. 所属分类:编辑框

    • 发布日期:2024-11-30
    • 文件大小:133kb
    • 提供者:王俊
  1. 用三元组表实现稀疏矩阵的转置运算

    0下载:
  2. 用三元组表实现稀疏矩阵的转置运算 一个阶数较大的矩阵中的非零元素个数S相对于矩阵元素的总个数t很小时,即非 零元素个数s占矩阵元素的总个数t的25%~30%时,称该矩阵为稀疏矩阵称. 由于稀疏矩阵中非零元素的分布没有任何规律,在存储非零元素时,必须保存该非 零元素所对应的行下标和列下标.这样,存储的每个稀疏矩阵中的非零元素都需要(行 下标,列下标,元素值)三个参量来唯一确定,将这种存储结构称为稀疏矩阵的三元组
  3. 所属分类:其他小程序

    • 发布日期:2024-11-30
    • 文件大小:2kb
    • 提供者:snow
  1. devotion

    0下载:
  2. 利用数组求任意椭圆的长轴,中心点坐标,以及相应的下标。-arbitrary use of arrays for the long axis of the ellipse, the center coordinates and the corresponding indices.
  3. 所属分类:网格计算

    • 发布日期:2024-11-30
    • 文件大小:23kb
    • 提供者:lxg
  1. bmp2source

    0下载:
  2. This program reads a 24bpp, 8bpp or 4bpp Microsoft Windows(TM) .BMP file and converts it into a C structure with the following information: the bitmap width, the bitmap height, the RGB color palette if the bitmap is 8bpp
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2024-11-30
    • 文件大小:45kb
    • 提供者:赵东
  1. jumbodepp

    0下载:
  2. 实现:实指数、复指数、不同长度序列求和、y(n)=x(-n)、y(n)=x(n-k)-realization : real indices Minute index, different length sequences for peace, y (n) = x (-n), y (n) = x (n-k)
  3. 所属分类:matlab例程

    • 发布日期:2024-11-30
    • 文件大小:1kb
    • 提供者:zh
  1. mfile4

    0下载:
  2. 计算多波段图像的特征空间图以及多波段图像的最佳组合指数。图像必须是多波段图像。-Calculation of multi-band image of the feature space map, as well as multi-band image the best combination of indices. Image must be multi-band image.
  3. 所属分类:2D图形编程

    • 发布日期:2024-11-30
    • 文件大小:1kb
    • 提供者:dabin
  1. 2Dcrystals

    0下载:
  2. Negative principal refractive indices and accidental isotropy in two-dimensional photonic crystals with an asymmetrical unit ce
  3. 所属分类:汇编语言

    • 发布日期:2024-11-30
    • 文件大小:583kb
    • 提供者:Qtai
  1. calculates-diverse-drought-indices

    0下载:
  2. calculates diverse drought indices (e.g. Standardized Precipitation Index, Self Calibrated Palmer Drought Severity Index)
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-11-30
    • 文件大小:14kb
    • 提供者:hawfinch taylor
  1. Development-of-Sensitivity-Based-Indices-for

    0下载:
  2. Development of Sensitivity Based Indices
  3. 所属分类:软件工程

    • 发布日期:2024-11-30
    • 文件大小:1.35mb
    • 提供者:brahmana
« 12 3 4 5 6 7 8 9 10 »

源码中国 www.ymcn.org