搜索资源列表
BPnetwork
- 该程序是用C语言写的采用了动量方法的BP神经网络,它具有极其强大的扩展性,可用于函数的逼近及分类识别等各方面,语言书写规范,其中大量使用了动态分配一、二维数组的方法,该网络实例中实现的是对某一函数的逼近,输入层为二层,中间层可自己设定多达十几层,逼近精度非常精确。读者可根据自己的需要设定各层的数目以及相应的训练样本进行训练与测试。
erweishuzhu
- java与c#中定义二维数组,使用二维数组的区别
页面置换算法的模拟实现和计算命中率
- 基本算法思想 OPT:该算法的基本思想是用二维数组page2[40][2] 的第一列存储装入内存的页面,而第二列用作标记位计数器。每当发生缺页时,就从内存中调出一页,首先将内存中的页面一一与要调入内存中的页面之后的页面比较,如果两个页面不相等,则内存中相应的页面的标记位计数器加一,直至到有相等的页面,则该页面的比较停止,再重复以上操作,直至内存中的页面全部比较完。然后找出内存中页面的标记位最大的页面,而该页就是要置换出来的页。 FIFO: 该算法的基本思想是用队列queue存储内存中的页面,队列
数据结构的C++描述
- 目 录 译者序 前言 第一部分 预备知识 第1章 C++程序设计 1 1.1 引言 1 1.2 函数与参数 2 1.2.1 传值参数 2 1.2.2 模板函数 3 1.2.3 引用参数 3 1.2.4 常量引用参数 4 1.2.5 返回值 4 1.2.6 递归函数 5 1.3 动态存储分配
HeightMap
- 这是我使用OpenGL编写的C++程序,可以将一个规定大小的地形高程值二维数组转化为直观的三维地形表示-This is what I use OpenGL, prepared by C procedures, can be the size of a required two-dimensional array of terrain elevation values into an intuitive three-dimensional terrain that
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
javacode
- 布局与组键大小问题、定义接口与接口的继承、面板的基本使用、事件驱动器的编程、二维数组的输入与显示-Group key layout and the size of the problem, define interfaces and interface inheritance, the basic use of panels, event-driven programming device, two-dimensional array of input and display
C_Array
- 简单的动态二维数组的生成、使用及释放程序,C语言编写-sssssssssssss
kaichuangzi
- 开窗游戏 二维数组的使用 给定一5X5方阵: 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 0 0 其中:0代表关闭的窗子,1代表开启的窗子 规则:开启或关闭一扇窗子,其自身和其上下左右的窗子的状态都要发生改变,1变为0,0变为1 目的:通过有限次开启/关闭窗子,使所有的窗子都关闭 -The use of two-dimensional array of the game win
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.
arraylist
- java二维数组的特点初始化,定义,使用。-the characteristics of two-dimensional array java initialize, define and use.
array
- 维数组的使用 声明,创建,初始化,数组元素的引用 二维数组的声明,初始化,元素的引用-Some small examples
051404
- 一个n * n的二维数组,使用1~n的平方的数填充这个数组,使数组的每行,每列以及每条对角线上的成员的和都相等-一个n* n的二维数组,使用1~n的平方的数填充这个数组,使数组的每行,每列以及每条对角线上的成员的和都相等
hash
- 一个简单的哈希表在C++中的实现,该哈希表主要是使用二维数组的形式实现-A simple hash table implementation, the hash table is implemented using two-dimensional array in the C++
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
two-dimensional-array
- 指向二维数组的定义和使用。怎么样去利用二维数组。-Point to the definition and use of the two-dimensional array
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字符串的使用方法;掌握两种字符串的区别。()