Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - array class
Search - array class - List
DL : 0
支持动态增长的数组类,源码包提供了完整的实现源码。对于模板类数组容器感兴趣的朋友是个不错的参考。-Support the dynamic growth of an array type, source packages to provide a complete source realize. Array container for template class a friend is interested in a good reference.
Date : 2026-01-19 Size : 1.53mb User : david

Server用php5 soap扩展实现,以soap数组返回A股行情数据。中文用UTF8编码。Client用GCC+wxWidgets2.8+gsoap2.7,IDE: CodeBlocks。通过gsoap生成代理类接收数据。 -Server with php5 soap extension of realize in order to return to soap array A shares market data. Chinese using UTF8 encoding. Client with GCC+ WxWidgets2.8+ Gsoap2.7, IDE: CodeBlocks. Gsoap generate proxy class through the receive data.
Date : 2026-01-19 Size : 96kb User :

The class CBitArray behaves like a specialization of the MFC template class CArray. A real specialization is not possible because of a missing simple data type for a bit. For maximum efficiency the bits are packed into a dynamic array of unsigned longs. You can easily modify the type of the date containing the bits (see typedef ULONG T in the declaration of CBitArray). CBitArray implements all member functions of the MFC class including the operator function [] (both for l-values and r-values). The private member functions Copylr, Copyrl, and X are derived from the same-named functions of the class bitstring written by P.J. Plauger and are published with permission of the author.
Date : 2026-01-19 Size : 23kb User : tony Lam

EOS1实现3种版本的向量内积) ,返回double精度数值) ,比较使用不同大下和密度的向量来对比相关的速度) ,-In large-scale optimization problems, different vectors and matrices are typically sparse, i.e. only very few elements are non-zero. Typically vectors with thousands of elements may contain only about 4-6 non-zeroes, on average. Such vectors can be stored as normal unpacked vectors (such as DVector class). Often sparse vectors can be stored more efficiently as packed vectors, where only the index and value of the non-zero elements are stored in an array.
Date : 2026-01-19 Size : 131kb User : wyb527

DL : 0
用c++ 实现的用类的构造函数初始化数组,是一种新的思路,学习完后会对c++有新的认识-Using c++ implementation with the class constructor to initialize the array, is a new idea, learn c++ would have exhausted a new understanding of
Date : 2026-01-19 Size : 922kb User : jack

实现随机数组生成的方法类,通过该类可以生成随机数组-The method of random arrays generated class, the class can be generated by random array
Date : 2026-01-19 Size : 6kb User : suzie

一个类似于VC++ 中的CString的动态数组类集合,可以方便构造对象,对象长度可在访问时自动增加数组长度,且可实现数组的整体赋值。-A class that works like "CString" in VC++. It can be used to make a array anytime anywhere. And the array newed by the class can be 0 length and can grow automatically when program is running.
Date : 2026-01-19 Size : 9kb User : zeng rongjia

一个使用MFC的VC++数组类代码,大家都知道,MFC的数组类可以存放任何数据类型,C++的常规数组在使用前必须将其定义成能够容纳所有可能需要的元素,而MFC数组类创建的对象可以根据需要动态地增大或减小,数组的起始下标是0,而上限可以是固定的,也可以随着元素的增加而增加,数组在内存中的地址仍然是连续分配的,希望通过我这个程序示例让你对基于MFC的数组类有一个更好的理解,教您学会使用这种数组类。 -One using MFC in VC++ array class code, and we all know, MFC array classes can store any data type, C++ General array before use must be defined to accommodate all possible needs of the elements, and MFC array class object created dynamically according to need to increase or decrease the initial array subscript is 0, while the upper limit can be fixed, also increased with the elements of the array' s address in memory is still a continuous distribution, and I hope Through my example, this program allows you to array-based MFC class has a better understanding of teaching you learn to use this array class.
Date : 2026-01-19 Size : 11kb User : madud00082

CArray数组模板类的使用实例源码,很不错的demo-The use of an array of template class CArray source code examples, very good demo
Date : 2026-01-19 Size : 36kb User : 吴燕燕

DL : 0
改进后的变长数组管理模板类,比前面的版本增加了_3DPOINT类,支持空间矢量和、积、差等运算-Improved management of variable-length array template class. comparing the previous version,_3DPOINT class is added. Which supports vector addition,mutiply opperations are supported.
Date : 2026-01-19 Size : 10kb User : zeng rongjia

CArray数组模板类的使用实例源码,很不错的vc源码,推荐!-CArray template class array of instances of the use of source code, source code vc very good, recommended!
Date : 2026-01-19 Size : 37kb User : 吴新兰

DL : 0
(1) 扩充程序,使之还能输出所有学生中单科成绩最高的学生信息。 (2) 设计一个容器类来管理所有的学生,即将main函数中的代码设计到一个类中。 (3) 代码中为了处理本科生和研究生设计了两段逻辑完全相同的代码,其所以这样设计是因为本科生类和研究生类是不同的类型,因此我们无法用单一的数组来包括所有的学生,从而导致无法对这些学生(本科生和研究生)进行统一的管理,请利用多态设计方法简化程序设计,也就是想办法能将本科生类对象和研究生类对象看作同一种类型以进行统一管理。 -自动检测中英文中译英英译中百度翻译 翻译结果(中 > 英)复制结果 ( 1) expansion program, which can output all the students scores the highest student information. ( 2) the design of a container class to manage all of the students, the main code in the function design to a class. ( 3 ) code to handle the undergraduate and graduate design two logic exactly the same code, so this design because of its undergraduate and graduate classes are different types, so we can t use a single array to include all students, which leads to the inability of these students ( undergraduate and graduate ) were unified management, please use the multistate design method to simplify program design, which is to think of a way to undergraduate and graduate class of objects as the same type to conduct unified management.
Date : 2026-01-19 Size : 871kb User : 路昊

自己随手编写的纯C++开发的动态数组模板类,希望对大家有用-Readily prepared pure C++ developed dynamic array template class, we want to
Date : 2026-01-19 Size : 2kb User : yuhua

一个产品的模糊评价信息储存载体类,其中包括了模糊数等级个数、模糊数名称数组、模糊集合数组以及相关操作函数等。-A fuzzy evaluation information storage carrier class, including fuzzy number level number, the name of the fuzzy numbers array, Fuzzy collection array manipulation functions.
Date : 2026-01-19 Size : 2kb User : 荣伟

DL : 0
利用资源向量Available ,它是一个含有m个元素的数组,其中的每一个元素代表一类可利用的资源的数目,其初始值是系统中所配置的该类全部可用资源数目。其数值随该类资源的分配和回收而动态地改变。如果Available(j)=k,标是系统中现有Rj类资源k个。-Resource utilization vector Available, it is an array that contains m elements, wherein each element is representative of a class of the number of resources available, and its initial value is the number of all available resources of the system configured such. Its value is dynamically changed with the kind of resource allocation and recovery. If Available (j) = k, standard existing the Rj classes resources system of k.
Date : 2026-01-19 Size : 217kb User : 孟瑞

模版类,解压缩之后,将Array.h包含即可使用.-The template class decompress Array.h contains can be used.
Date : 2026-01-19 Size : 12kb User : 赵邦羽

DL : 0
一个VC雪花屏保CPP类,不是一个完整的屏幕保护程序,是一个VC++用来制作屏幕保护的cpp类文件,里面有注释,使用没有过多难度。在这个类里可设置雪花数量、雪点位置、下落速度、下落距离、粘贴度、雪点数组、当前循环步数(用于限速)、高性能定时器计数器的使用、每次下落距离(1-5)、控制雪点下降速度、积雪(停留)效果处理、保存颜色并绘制雪点等相关功能的实现-A VC snow screensavers CPP class, not a complete screen saver, a VC++ cpp class files used to make the screen saver, there are comments, not too much difficulty. In this class can be set to the number of snowflakes, snow point, falling speed, drop distance, paste, snow array of points, the current cycle number of steps (for the speed limit), the use of high-performance timer counter, each drop distance ( 1-5) to control the falling speed of the snow point, snow (stay) effects processing, save the color and draw function of the realization of the snow points
Date : 2026-01-19 Size : 2kb User : 吴文勇

DL : 0
顺序表5-类(静态数组,尾元下标)当前对象-Order Table 5- class (static array, the tail element subscript) of the current object
Date : 2026-01-19 Size : 8kb User : 刘佳丹

DL : 0
顺序表9-类指针(静态数组,尾元下标)当前对象-Order Table 9- class pointer (static array, the tail element subscript) of the current object.
Date : 2026-01-19 Size : 8kb User : 刘佳丹

DL : 0
顺序表34-类、结构体指针(动态数组,表长)当前对象-Order Table 34- class, struct pointer (dynamic array, table length) of the current object
Date : 2026-01-19 Size : 7kb User : 刘佳丹
« 12 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.