搜索资源列表
AxisShowPoints
- 做算法测试使用的二维图形显示程序源代码,支持一维,二维数组显示,已及矩阵形式的数据点。含详细使用说明,显示速度很快。
C语言实战105例
- C语言实战105例 第1部分 基础篇 实例1 一个价值“三天”的BUG 2 实例2 灵活使用递增(递减)操作符 5 实例3 算术运算符计算器 7 实例4 逻辑运算符计算器 9 实例5 IP地址解析 11 实例6 用if…else语句解决奖金发放问题 13 实例7 用for循环模拟自由落体 16 实例8 用while语句求n! 19 实例9 模拟银行常用打印程序 22 实例10 使用一维数组统计选票 26 实例11 使用二维数组统计学生成绩 29 实例12 简单的计算器
quxian
- 用CVI编写的对二维数组进行曲线拟和的程序。在工程中是很实用的。可拟和为直线、多项式或指数。用户需有CVI环境才可使用。-CVI prepared using two-dimensional array of curve fitting procedures. In engineering is very practical. Can be and as a straight line, polynomial or index. Users need only be used CVI envir
bucketSort
- (吊桶排序法)吊桶排序法源于一维正整数数组的排序问题,它使用了一个行从下标从0-9,列下标从0-n-1(n是一维数组中的元素数目)的二维整数数组,二维数组的每一行叫做一个吊桶(bucket)。-(Bucket sorting method) bucket sort method from the one-dimensional array of positive integer scheduling problem, it uses a line from the subscr ipt from
wanshell
- warshall法顺序:置新矩阵,开始运算;置i=1;对所有j如果A[j,i]=1,则对k=1,2,3……n运算啊A[j,k]:=A[j,k]+A[i,k]; i++;如果i<=n转上继续 需要: 1.输入矩阵,用二维数组,可以考虑全局变量 2.设置矩阵最大值nMax 3.对i从0到n-1循环,寻找每列为1的项,为1则继续运算,否则返回 增强说明: 1.输入方式选择,同时可以选择是否继续运算 2.不再每行确认,增加修改选项 3.使用字符串数组
TxttoArrary2
- 一个用于将文本文件的数据读入到二维数组的类,使用起来非常方便,包括两种形式分隔的,一个是逗号,一个是空格。-a program used for reading in type of txt file,and saved it into two dimension arrary ,included multiform,such as it divide by comma or other symbols.
tuixiangzi
- 此程序旨在让读者基本掌握显示器中断寄存器的设置、二维数组及结结构体的定义、键盘上键值的获取、部分图形函数的使用,源程序有详细说明-This program is designed to help readers master the basic settings for the display interrupt register, two-dimensional array and the end structure of the definition of access keys on th
PfzDrawingSample
- 本文介绍了类,代表了全托管代码的位图。 一个位图,基本上是一维数组,使用了一些计算被视为一个二维数组看到。在这种数组中的值可以是颜色索引(当使用调色板)或RGB值直接使用某种类型的编码。托管位图具有PixelArray,这是一个字节数组,GrayscaleBitmap的诠释(System.Int32的),为ArgbBitmap为ColorBitmap颜色和简单的类。他们也知道有一个宽度,计算出的X / Y坐标。高度值,然后计算作为其宽度PixelArray长度划分。他们当然有一些其他方法。它
C_105_source
- 第1部分 基础篇 实例1 一个价值“三天”的BUG 实例2 灵活使用递增(递减)操作符 实例3 算术运算符计算器 实例4 逻辑运算符计算器 实例5 IP地址解析 实例6 用if…else语句解决奖金发放问题 实例7 用for循环模拟自由落体 实例8 用while语句求n! 实例9 模拟银行常用打印程序 实例10 使用一维数组统计选票 实例11 使用二维数组统计学生成绩 实例12 简单的计算器 实例13 时钟程序 实例14 华氏温度和摄氏
N-lines-before-output-Triangle
- 一、 输入一个正整数n,通过程序输出杨辉三角的前n行,并输入一个正整数m,若m在杨辉三角中存在,输出所在位置的行列。 (1) 输入正整数n,输出杨辉三角形的前n行,1<n<20。要求至少给出四种解法:不使用任何数组,只使用一维数组,只使用二维数组,使用递归。 (2) 输入正整数m, 若m在杨辉三角形中存在,输出所在位置的行列编号。-Enter a positive integer n, the first n rows of Pascal' s Triangle pro
1.2-text
- 使用Visual C++编写的二维数组操作程序-2D array manipulation program written in Visual C++
yanghuisanjiao
- 打印杨辉三角 每一行的第一个和最后一个都是1,而中间元素是由表达式 a[i][j] =a[i-1][j-1] + a[i-1][j] 计算出来。因为要使用上面的数据,这样我们想到了用二维数组进行数据的存储。-Print Pascal' s Triangle
k
- 对于稀疏矩阵的存储,可不使用二维数组来存储,而使用链表,只存储其中的非0元素。链表中的每个结点包含的域为(行,列,值, next),如以下稀疏矩阵: 0 2 0 0 0 3 0 0 0 6 0 0 0 0 0 0 0 7 0 0 则链表为: 请实现两个稀疏矩阵的相加,并输出结果。要求:相加后原来的两个矩阵仍然存在。-For sparse matrix storage, without using the two-dimensional array
7
- ArrayList类 二维数组的声明和使用 哈希表Hashtable 一维数组的声明和使用-The ArrayList class two-dimensional array declaration and use of hash table Hashtable declaration and use of the one-dimensional array
mystery
- 使用C语言编写的,通过二维数组、递归算法实现对迷宫的遍历,并找出正确路径的程序。-Using the C language, through two-dimensional array, recursive algorithm for traversing the maze and find the correct path of the program.
philipnaparanVB
- 这个应用程序是非常有用的,以这些初学者在VB编程对他们empliment如何使用或创建一个二维数组。神奇的广场是一个应用程序的总数量在所有comumn相同数量的总数在它的行。 -This application is very useful to the beginner programming in VB how they empliment or create a two-dimensional array. Magic square is a total number of appli
py3
- 一个简单的C语言控制台程序,通过二维数组的使用实现了对矩阵的转置运算。-A simple C language console application, by using a two-dimensional array of realization of the matrix transpose operation.
char[i][j]play
- vc++中二维数组的使用,简单例子,用于初学者学习。-The use of vc++ 2 d array, a simple example, for beginners to learn.
ge
- 使用list存储数组,并将其绘制出来的数组(Use the random number generated array, draw the heartbeat waveform, and move to the left;)
Java的常用基础类的使用
- 掌握Java中一维数组的使用;掌握Java中二维数组的使用;掌握Java中向量的使用。掌握String类字符串的使用方法;掌握StringBuffer字符串的使用方法;掌握两种字符串的区别。()