搜索资源列表
datastr
- 数据结构 array.h: 安全数组,可自动增长大小(随机访问,但扩充时效率低) linkedlist.h: 普通链表(可随机访问,但访问效率低) dclinkedlist: 双向循环链表(不可随机访问,但插入、遍历的效率都比普通链表高) hashtable.h: 哈希表(使用键值标识元素,键值一样的元素即认为相等,需重载 == 运算符并由用户定义哈希函数) binstree.h: 二叉搜索树(需重载 == 和 < 运算符) avltree.h: AVL 树(
nbl
- 逆波兰式计算,将格式化数组转化为逆波兰表达式,a为输入的数组,n为其长度,p为输出逆波兰表达式的目标,m记录逆波兰表达式的长度 -inverse Polish, the array will be formatted into reverse Polish expression, a for the importation of arrays, its length n, p output of the inverse expression Poland, Poland inverse m re
ARRAYS
- 学习C语言路上的第一道难关,数组,此代码就是关于数组操作的所有问题的基本原理和入门
ARRAYS
- ARRAYS的数十种代码-ARRAYS dozens of kind of codes
LabVIEW-8.20-VI
- 第2章 牛刀小试 第5章 程序结构 第6章 字符串,数组,簇和矩阵 第7章 Chart图表和Graph波形图 第8章 Express VI 第9章 文件IO 第10章 子VI 第12章 人机界面交互设计 第13章 数学分析与信号处理 第14章 数据采集与仪器控制-Chapter 2 chopper small test Chapter 5 Program Structure Chapter 6 strings, arrays, clusters and ma
cklib_user_routines
- Template for user-modify of default reaction rates-of-progress. CAUTIONS!!! (1) CKUPROG should only modify RPROG and possibly the error flag (IFLAG) use local variables and arrays for any other work some local arrays have been provided a
matlab-functions-and-applications
- 本书结合科学研究和工程中的实际需要,系统、全面地介绍了MATLAB的常用函数。主要内容包括MATLAB基础及通用函数、数学运算函数、数组和矩阵运算函数、数值计算函数、概率统计函数、图形及图像处理函数、符号计算函数、图形用户界面开发函数、Simulink仿真函数、控制系统设计函数、信号处理函数、神经网络应用函数、最优化设计函数和小波变换函数。本书讲解的函数主线为从MATLAB的基础知识到不同领域的应用和实际问题的解决。电子书高清版但章节不全,但书内案例源码齐全,欢迎下载学习。-The book
Arrays
- This document gives a brief descr iption about Arrays in C++ language
recipe
- SORT sort an array by quicksort method (8.2) SORT2 sort two arrays by quicksort method (8.2) SORT3 sort, use an index to sort 3 or more arrays (8.4)-from numerical recipes
N-sparse
- 创建一个n维的稀疏数组对象,n是任意值。 定义N可能是大于2的一类n维稀疏阵列。然而,它应该被认为是一种起动方式与普通的MATLAB稀疏矩阵和重塑它有N维度。换句话说,稀疏的数据,首先必须能够作为一个普通的2D MATLAB稀疏矩阵被前n维。事实上,如果目标数组的尺寸mxnxp……yxz,然后将它存储在内部类是一个普通的二维稀疏阵列的尺寸(M×N×P×……×Y)XZ。这导致了某些内存株时使用大量的尺寸。我发现有用的类主要用于中等尺寸像三维图像边缘检测,你经常要举行一个稀疏的3D的边缘地图。-Cr
282small-programs-on-C
- C语言经典例程282个小程序,涵盖了数组、指针、文件操作等,适合入门者学习。-C language classic routines 282 small programs, covering arrays, pointers, file operations, etc., suitable for beginners to learn.
PARTIAL-SHADINGS-ON-PV-ARRAYS
- We present a methodology for the analysis and the uation of the electrical effects of partial shadings on a PV array. This methodology is namely developed in a pedagogic tool of the software PVsyst, which aims to explain how a shaded cell or grou
Array
- 一维数组和二维数组等的用法,郝斌老师的讲课内容-Use one-dimensional and two-dimensional array of arrays, etc., Hao Bin teacher' s lecture
CPP-source-code-Chapter-1-5
- C++程序设计实用教程的源代码1-5章,包括数组以及整除问题-C++ programming is practical tutorial source code 1-5 chapters, including arrays and divisibility problems, etc.
speedreducer
- Linear Antenna arrays provide alternative solution to dimensional structure of Antennas such as paraboloidal cylinders, paraboloids, offset focus paraboloids etc. This paper presents the survey of various evolutionary approaches for linear ar
mtt
- This document is intended to be a compilation of tips and tricks mainly related to efcient ways of performing low-level array manipulation in MATLAB. Here, manipulation means replicating and rotating arrays or parts of arrays, insert
C经典程序
- 最基础的C语言程序,覆盖输入输出操作,数组,函数,指针,文件等,很典型。(The most basic C language program, covering the input and output operations, arrays, functions, pointers, documents, etc., is very typical.)