Welcome![Sign In][Sign Up]
Location:
Search - 数组

Search list

[ActiveX/DCOM/ATLVC下利用COM传递不定长结构数组(非Variant)

Description: Variant变量可以在COM/DCOM接口方法中传递(传入、传出)不定长结构数组,但是需要打包和解包,效率比较低。这个例子使用了size_is指定长度的方法,本是从MSDN上看到的,但是MSDN上给出的例子不够具体,所以费了些时间摸索,最后试通,给刚接触COM的朋友分享(老家伙们可以直接无视)。本例子由于是工作需要做得试验程序,因此其中存在少量冗余代码,大家注意一下就行了,还有,减少传递的参数个数时,所传递的实时(随机模拟)数据只是减了最后一个(没有减去相对应的),这个Bug不妨碍大局,因此存留,虽然Server支持DCOM,但是Client需要在本地运行,如果想Remote,稍微修改一下既可。
Platform: | Size: 358855 | Author: seaskyfox | Hits:

[Data structsC语言实现的动态数组,可放入任意元素

Description: C语言动态数组,可放入任意元素
Platform: | Size: 9808 | Author: hzdengxu@163.com | Hits:

[SourceCode统计数组中不同元素

Description: 用来统计数组中不同元素
Platform: | Size: 371 | Author: yanjiang666 | Hits:

[CSharp求数组中最大的数

Description: 求出数组中最大的数,并输出。
Platform: | Size: 327 | Author: moxueweirong729252692@_ | Hits:

[SourceCode最大子数组

Description: 最大子数组
Platform: | Size: 522 | Author: LANGRENBULE@163.com | Hits:

[Windows Develop模板动态数组

Description: 本代码提供对动态数组的支持,在内存中程序将数据分块存放,避免了大块内存的申请,同时也和普通的双向链表不同的是本代码提供了对内部数据的快速索引,大大提高了数据访问速度。-the code for the dynamic array of support, in memory processes data block stored, to avoid a large memory applications, but also ordinary and the two-way linked list of the code is to provide the right information within the rapid indexing, thereby greatly increasing the speed of data access.
Platform: | Size: 11264 | Author: 悠然君 | Hits:

[CSharp整型数组与Object数组的互操

Description: 整型数组与Object数组的互操作性-integer arrays with the Object array of interoperability
Platform: | Size: 13312 | Author: 李想 | Hits:

[Data structs如何给链表数组赋值

Description: 如何给链表数组赋值,很适合初学数据结构的朋友。-array assignment is well-suited to beginners data structure friend.
Platform: | Size: 1024 | Author: 张志明 | Hits:

[JSP第七章 数组

Description: java语言中的数组,包括一维数组和多维数组-array, including the one-dimensional arrays and multi-dimensional arrays
Platform: | Size: 16384 | Author: sss | Hits:

[Windows Develop数组排序算法改进版

Description: 这个程序的头文件中包含四种排序方法:泡沫排序法(bubble),插入排序法(insertion),快速排序法(quick)和选择排序法(selection)。头文件中还使用了模板技术,以便可以同时实现几种类型的排序算法。 dinimicky_hu对原程序做了修改和优化,使用了函数指针数组,并修改了一个BUG-The head file of this programme includes 4 methods of sorting : Bublle sorting,insertion sorting,quick sorting and selection sorting.Some template technics are included in the head file in order to make these sorting metods achieved in the same time . The source code is recomposed and optimized by Dinimicky_hu , using the some arrays of function pointer ,and amened some bugs.
Platform: | Size: 28672 | Author: | Hits:

[ActiveX/DCOM/ATL在COM中使用数组_code

Description: COM中使用SAFEARRAY数组例程,代码中给了两种数组的用法,一种是字符串数组,另一种是自定义数据结构数组。 -use COM SAFEARRAY array routines, a code for the use of two arrays, a string array, and the other is from the definition of array data structure.
Platform: | Size: 55296 | Author: 全宁 | Hits:

[Other数组中查找删除

Description: 数组中的查找和删除数据,最大上限为100,用c语言编写,可直接运行(Array of search and delete data, the maximum limit of 100, written in C language, can be run directly)
Platform: | Size: 5120 | Author: 闻怡 | Hits:

[LabView删除数数组中的0

Description: 有效删除数组中的0元素,保留非0元素,输出非零数组(Removes the 0 element in an array)
Platform: | Size: 7168 | Author: 梁渠 | Hits:

[DocumentsMatlab中数组元素引用有三种方法

Description: Matlab中数组元素引用有三种方法用于解决数组命名数组读取等问题(There are three ways to refer to array elements in Matlab for solving problems such as array naming, array reading, and so on)
Platform: | Size: 1024 | Author: liuxinglvn | Hits:

[Documents第六章 数组

Description: c语言数组的具体应用,简单上手,思路清晰,容易学习(C language array of specific applications, simple to use, clear thinking, easy to learn)
Platform: | Size: 2450432 | Author: 456103 | Hits:

[LabView数组列最大值

Description: 求二维数组按照列的最大值,最小值。直接就可以用了(Find a two-dimensional array, according to the maximum value of the column, the minimum value. You can use it directly)
Platform: | Size: 6144 | Author: shuiyuege | Hits:

[Internet-NetworkPHP数组

Description: php数组编程例程大全,包括各种排序,和经常使用用法(PHP array programming routines Daquan)
Platform: | Size: 5120 | Author: smartslug | Hits:

[Other用指针访问数组

Description: C++新手初体验,用指针访问数组小试牛刀(Use a pointer to access the array)
Platform: | Size: 748544 | Author: K1ngRay | Hits:

[Data structs数组

Description: 用java描述常用数组排序如冒泡排序、直接排序、反转排序(Use Java to describe common array sort such as bubble sort, direct ordering, reverse ordering)
Platform: | Size: 1024 | Author: 林斌 | Hits:

[Windows Developc++实现动态数组

Description: 使用C语言实现一个长度可扩充的数组(包含必要的数据结构及函数); 能存放任意类型的数据(Using C language to implement a dynamic array which can reserve any kinds of datas)
Platform: | Size: 1024 | Author: shiwei0015 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net