搜索资源列表

  1. 仓库管理系统(C语言)

    0下载:
  2. 一个仓库管理系统,用C语言编写的,之前做过学生成绩管理系统与此有相同的地方。采用结构体数组,具有输入商品,排序的功能,用菜单实现查询,学习C语言的好程序-a warehouse management system using the C language, the students did before the performance management system with the same place. Using the st
  3. 所属分类:书籍源码

    • 发布日期:2024-05-14
    • 文件大小:2048
    • 提供者:
  1. 我收集的算法

    0下载:
  2. 我收集的一些算法 稀疏矩阵、基于数组的线性表、模式匹配、线性链表-I collected some sparse matrix algorithm, based on the linear array table, pattern matching, etc. Linear Chain
  3. 所属分类:Web服务器

    • 发布日期:2024-05-14
    • 文件大小:508928
    • 提供者:和尚
  1. 邻接矩阵求解最短路径(数组)

    0下载:
  2. 邻接矩阵求解最短路径(数组).rar 邻接矩阵求解最短路径(数组).rar-adjacency matrix for the Shortest Path (arrays). Rar adjacency matrix for the Shortest Path (arrays). Rar
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-14
    • 文件大小:24576
    • 提供者:lsx
  1. bubblesorttemp

    0下载:
  2. 对字符串集进行排序,支持C++数组和MFC集合类,支持升序和降序. -right string sets, in order to support array and MFC C Class Set support ascending and descending.
  3. 所属分类:其他小程序

    • 发布日期:2024-05-14
    • 文件大小:6144
    • 提供者:顾义坤
  1. Array.cs

    0下载:
  2. 这是一个用c#编写的程序,主要功能是熟练掌握数组的使用-c# prepared using the procedure, the main function is to skillfully master the use of arrays
  3. 所属分类:界面编程

    • 发布日期:2024-05-14
    • 文件大小:2048
    • 提供者:魏星
  1. YCArray

    0下载:
  2. /** * 动态数组的模板类 * 1.支持字符索引 * 2.方便的添加删除修改任意一项 * 最后更新 2004-8-9 yzh **1.优化了字符索引的运作方式,使用数组存储 **2.重写了底层数据的存储,将连续性的存储方式改为了非连续, *** 从而很好有效地支持了“引用”,并且让数据的删除增加变的更为快速 * 用法如: * YCArray<int,int> test * test
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-05-14
    • 文件大小:5120
    • 提供者:叶振华
  1. 黑白棋游戏

    0下载:
  2. 这个程序也是对编程基本功的一个训练,对于初学C语言的人,将分支,循环,数组,函数综合应用.-the process of programming is a basic skills training for the C language learning, to branch cycle, arrays, function integrated application.
  3. 所属分类:棋牌游戏

    • 发布日期:2024-05-14
    • 文件大小:3072
    • 提供者:詹少
  1. plapoint

    0下载:
  2. 用指向指针的指针变量访问一维和二维数组 用C语言编制,用于对一维或二维数组的指针间接访问-indicators used at the target variable visit one-and two-dimensional arrays in C language for the right one-dimensional or two-dimensional array of indirect indicators visit
  3. 所属分类:其他小程序

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:李春波
  1. jos数组程序

    0下载:
  2. 用数组解JOSEPHUS问题的程序源码,绝对没有错误-array solution with the procedures JOSEPHUS source, there is no wrong
  3. 所属分类:Windows编程

    • 发布日期:2024-05-14
    • 文件大小:2048
    • 提供者:刘洁
  1. Lcy2

    0下载:
  2. 图片不同角度显示,用数组来定位图片的角度,坐标用Random来产生!-Photo different angles, using photo array positioning point of view, using coordinates to generate Random!
  3. 所属分类:C#编程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:阿义
  1. 系统ALPHA通道的应用

    0下载:
  2. 本程序通过调用系统API函数AlphaBlend和使用自定义数组来进行同一幅图片的透明效果处理,从它们相同的效果和不同的反应速度上来体现出系统透明通道的应用-this program by calling the API function AlphaBlend system and the use of custom arrays for a picture with the transparent effect, the same f
  3. 所属分类:GDI/图象编程

    • 发布日期:2024-05-14
    • 文件大小:322560
    • 提供者:JELL
  1. VB数组运用

    0下载:
  2. 一些VB中数组运用的例子,囊括了VB数组的大部分知识点.可供参考和调用.-some VB examples of the use of the array, the array includes most of the VB knowledge point. For reference, and use.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-14
    • 文件大小:331776
    • 提供者:何生
  1. 多维数组-矩阵的压缩存储- 稀疏矩阵(一)

    0下载:
  2. 稀疏矩阵   设矩阵A mn 中有s个非零元素,若s远远小于矩阵元素的总数(即s<<m×n),则称A为稀疏矩阵。 1、稀疏矩阵的压缩存储   为了节省存储单元,可只存储非零元素。由于非零元素的分布一般是没有规律的,因此在存储非零元素的同时,还必须存储非零 元素所在的行号、列号,才能迅速确定一个非零元素是矩阵中的哪一个元素。稀疏矩阵的压缩存储会失去随机存取功能。   其
  3. 所属分类:其他小程序

    • 发布日期:2024-05-14
    • 文件大小:4096
    • 提供者:snow
  1. WriteBMP

    0下载:
  2. 以RGBTRIPLE数组数据生成24位位图 以Long数组生成32位位图 数组起点(1,1)-to RGBTRIPLE array data generated 24 Long bitmap array to generate 32 bitmap few Group starting point (1,1)
  3. 所属分类:GDI/图象编程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:吴翔
  1. GETBMP

    0下载:
  2. 读取bmp文件,生成可插入到C程序中的点阵数组格式.-read bmp file, generate C can be inserted into the procedure for the lattice array format.
  3. 所属分类:2D图形编程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:马兴录
  1. sarray

    0下载:
  2. 大量数据的管理是很多程序员的心病,很难找到一个速度快、效率高、支持超大规模数据的表,在1.0版本的基础上,启程花血本写下了这个强化了数据插入与删除的修正版,启程动态数组是一个功能强大的列表形数据管理链表,利用它可以轻松实现超大数据量的随机插入、删除、修改等操作,它另外一个特点就是速度极快,内存利用率高。 大量数据的管理必然需要占用大量的内存空间,如果这些数据占用的空间大小是随各种条件变化的,我们就不能使用数组来管理这些数据了(
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-14
    • 文件大小:28672
    • 提供者:黄建雄
  1. Dynamicarray

    0下载:
  2. 动态数组应用实例,简单介绍如何使用动态数组-dynamic array example, a brief introduction on how to use dynamic arrays
  3. 所属分类:界面编程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:邓江
  1. ewszpx

    0下载:
  2. 输入30个数到一个5行6列数组,经排序后该数组各元素值按行从小到大排列,并显示该二维数组。 要求:直接在该数组中排序,不得转存于一个一维数组。 -input to a 30 Number 6 line arrays, sorting through the array element values of the firms from small to large order, and that the two-dimension
  3. 所属分类:其他小程序

    • 发布日期:2024-05-14
    • 文件大小:22528
    • 提供者:安然
  1. dgsxzs

    0下载:
  2. 这个是用c语言编写的一个用递归实现的小程序,程序的功能是实现你输入两个整数m,n(m>n),他输出一连串的数组,其中每个数组都是从这m个数中选择的不同的n个数。找出所有这样的数组。-c is the language used in a recursive procedure to achieve a small, procedural functions of achieving your input two integers
  3. 所属分类:其他小程序

    • 发布日期:2024-05-14
    • 文件大小:157696
    • 提供者:lxf
  1. VCsplit

    0下载:
  2. 本代码功能类似VB的split把一个字符分割保存在数组里。-functionally similar to the VB split to bring a character segmentation stored in arrays.
  3. 所属分类:其它资源

    • 发布日期:2024-05-14
    • 文件大小:7168
    • 提供者:谢栩
« 1 2 3 4 5 67 8 9 10 11 ... 50 »

源码中国 www.ymcn.org