搜索资源列表
qarray_demo
- c++中自定义结构的动态数组源码,支持排序.给了动态数组模板类,以及排序的模板函数.-c++ customize dynamic array source to support the sort. to the dynamic array template class, as well as the sort of template function.
bank
- 二维动态数组的银行家算法 可以自己输入进程数和资源数-Two-dimensional dynamic array of the banker s algorithm can process the number of input and resources of several
Dynamic_Malloc_Memory(MultiDim)
- 动态多维数组内存申请,可以很容实现一维,二维和三维动态数组的申请,好用,简洁。-Dynamic multi-dimensional array of memory an application can allow the realization of one-dimensional, two-dimensional and three-dimensional dynamic array of applications, easy to use, simple.
array
- C++的数组类管理类定义 被本人持续使用并完善超过20年 支持动态数组,和2维数组 类似于VC++中的CArray,且许多内部方法都与CArray的内部方法相同,但效率和方便性比CArray要好许多。特别重要的是:它们可以跨平台地工作于任何C++开发环境。-A c++ array management type definition series. They work like CArray class in VC++.But they work more efficient a
chasing
- 追赶法求解线性方程。附带一个图片,是说明例子。程序中用到了动态数组的申请和释放。-Chasing method for solving linear equations.
23456787654321
- 问题一:设a[0:n-1]是已排好序的数组。请改写二分搜索算法,使得当搜索元素x不在数组中时,返回小于x的最大元素位置i和大于x的最小元素位置j,当搜索元素在数组中时,i和j相同,均为x在数组中的位置。 问题二:采用分治策略实现对n个元素进行排序的合并排序算法,其基本思想是:将待排序元素分成大小大致相同的2个子集合,分别对2个子集合进行排序,最终将排好序的子集合合并成为所要求的排好序的集合。 问题三:给定n个矩阵{A1,A2,A3,……,An},其中,Ai与Ai+1是可乘的,i=1,2,
p03
- 1、编写并测试3×3矩阵转置函数,使用数组保存3×3矩阵 2、使用动态内存分配生成动态数组来重新完成上题,使用指针实现函数的功能。 3.写一个程序,定义基类车Vehicle,有Run,Stop等成员函数,由它派生出2个派生类:(自行车类)、(汽车类),从Bbicyce 、Motoracar派生出Motorcycle(摩托车类),它们都有Run,Stop等成员函数。注意虚函数的作用。 -1, to prepare and test the 3 × 3 matrix transpose
lab_6
- 1.使用动态内存分配生成动态数组来完成3*3矩阵转置函数 2.应用string类定义字符串,实现两个字符串的连接 3.修改实验4中的选做实验中的people类。具有如下属性:姓名char name[11],编号char[7],性别char sex[3],生日birthday,身份证char id[16]。其中“出生日期”定义为一个“日期”类内嵌函数对象,用成员函数实现对人员信息的录人和显示。要求包括:构造函数和析构函数,开呗构造函数,内联成员函数,聚集。在测试程序中定义people类的对
MemoryAllocation
- 检验标识符是否合法(动态数组) 根据C语言标识符是否合法的程序 主要联系动态分配内存的使用-Memory Allocation
sl
- c语言扫雷程序,在命令行界面下实现扫雷,对动态数组的应用-c language de-mining program, the command line interface to achieve mine clearance, the application of dynamic arrays
arrary
- 字符串动态数组,C++编写-Dynamic array of strings, C++ written
DArray(Sample)
- 用c++类实现动态数组,体现类的封装。基本实现了vector的功能 -With c dynamic array, reflecting the class package
DArray_Max
- 用c++类实现动态数组的封装,用MAX变量来缩短运行时间-Dynamic array package using C++ classes to shorten the running time of MAX variable
Array
- 用类实现动态数组的各种操作,获取数组大小,重置数组大小,获取元素,重载[]操作符,追加新元素,删除元素,插入元素,重载=-With class implements a dynamic array of various operations, access to the array size, the size of the array is reset, access to the elements, overloaded [] operator, additional new element
7_2_15
- 随机产生N个整数值,N由用户输入,存于动态数组中,并计算其和与均值-Random integer values to generate N, N input by the user, stored in a dynamic array, and calculate and mean
dyn_arrary
- 输入一维整形数组长度和数组元素,将各元素取反加一后的数组输出,要求采用动态数组方式实现;-Enter the length of a one-dimensional array of integers and an array of elements, each element is anti-plus-one array output, requires a dynamic array of ways to achieve
zz
- 动态数组输出相反 根据你输出的一段 数字 结果给出相反的结果(Dynamic array output, instead, gives the opposite result based on the number of digits you output)
1.2-Assignment
- 完成了高效的动态数组的相关编程,包含动态数组的封装和其他功能(Complete the efficient dynamic array of related programming)
1.1-Assignment
- 完成了基本的动态数组的封装,并实现了接口中的函数(The encapsulation of the basic dynamic array is completed, and the functions in the interface are implemented)
array-doubly-linked-lru
- 基于数组的LRU队列,可以动态添加与删除元素(In this code, we realize a LRU queue based on an array)