搜索结果

找到约 135 项符合 template 的查询结果

VC书籍 本书由知名的C++专家Matthew H.Austern执笔

本书由知名的C++专家Matthew H.Austern执笔,引导你进入泛型编程思维模型,并将你带往此一模型的最重要成品:C++ Standard Template Library(STL)。本书揭示STL的奥秘,告诉你STL不仅仅是一组方便运用的容器类(container classes)。对于泛型组件和可交互作用的组件而言,STL是一个具备扩充能力的框架(framework)、 《泛型 ...
https://www.eeworm.com/dl/686/219375.html
下载: 181
查看: 1072

VC书籍 This book systematically introduced the Standard C Library and the C++ library, C++ Standard Tem

This book systematically introduced the Standard C Library and the C++ library, C++ Standard Template Library.The features are presented both in alphabetic order and by category.
https://www.eeworm.com/dl/686/221693.html
下载: 49
查看: 1085

文件格式 We propose a novel approach for head tracking, which combines particle filters with Isomap. The part

We propose a novel approach for head tracking, which combines particle filters with Isomap. The particle filter works on the low-dimensional embedding of training images. It indexes into the Isomap with its state variables to find the closest template for each particle. The most weighted particle ap ...
https://www.eeworm.com/dl/639/241526.html
下载: 174
查看: 1070

VC书籍 《C++标准程序库》本书不仅对每一个程序库组件提供范围广泛的说明

《C++标准程序库》本书不仅对每一个程序库组件提供范围广泛的说明,也对繁复的观念提供清楚明亮的解释,并描述高效运用这些组件时需要的实际编程细节,提出一个又一个的范例程序。本书是一本包含最新资料的完整书籍。反映出被ANSI/ISO C++语言标准规格书纳入C++标准程序库的最新组成。更明确地说,本书将焦点放在标准模板库 ...
https://www.eeworm.com/dl/686/264480.html
下载: 79
查看: 1056

书籍源码 26.编写一个具有如下样式的类模板tmplt

26.编写一个具有如下样式的类模板tmplt,用于实现所谓的反序输出问题,其中使用了类型参数T(使所处理的元素类型可变化)以及普通参数n(元素个数也可变化): template <class T, int n> class tmplt { T arr[n] // n个T类型的数据存放于数组arr之中 public: void dataIn() //从键盘输入n个T类型数据放入arr数组中 ...
https://www.eeworm.com/dl/532/268010.html
下载: 24
查看: 1030

单片机开发 File name: main.c ** Last modified Date: 2006-09-26 ** Last Version: 1.0 ** Descriptions: The

File name: main.c ** Last modified Date: 2006-09-26 ** Last Version: 1.0 ** Descriptions: The main() function example template ** **------------------------------------------------------------------------------------------------------ ** Created by: ** Created date: 2006-09-16 ** Version: ...
https://www.eeworm.com/dl/648/278366.html
下载: 95
查看: 1076

数学计算 多项式曲线拟合 任意介数 Purpose - Least-squares curve fit of arbitrary order working in C++ Builder 2007 as

多项式曲线拟合 任意介数 Purpose - Least-squares curve fit of arbitrary order working in C++ Builder 2007 as a template class, using vector<FloatType> parameters. Added a method to handle some EMathError exceptions. If do NOT want to use this just call PolyFit2 directly. usage: Call PolyFit by ...
https://www.eeworm.com/dl/641/279819.html
下载: 135
查看: 1119

数据结构 程序设计当中经常会出现使用同种数据结构的不同实例的情况。例如:在一个程序中 可以使用多个队列、树、图等结构来组织数据。同种结构的不同实例,也许只在数据元素 的类型或数量上略有差异,如果对每个实例都

程序设计当中经常会出现使用同种数据结构的不同实例的情况。例如:在一个程序中 可以使用多个队列、树、图等结构来组织数据。同种结构的不同实例,也许只在数据元素 的类型或数量上略有差异,如果对每个实例都重新定义,则非常麻烦且容易出错。那么能 否对同种类型数据结构仅定义一次呢?答案是肯定的,C++提供的类模板(Class Tem ...
https://www.eeworm.com/dl/654/306244.html
下载: 73
查看: 1046

3G开发 This m file models a DPSK UWB system using a delay in one leg of the mixer, correlation receiver low

This m file models a DPSK UWB system using a delay in one leg of the mixer, correlation receiver low pass filter combination requiring no template for synching. Various waveforms are displayed throughout the system to allow the user to observe operation of the system.
https://www.eeworm.com/dl/701/313982.html
下载: 81
查看: 1044

汇编语言 c++二、通过将其元素插入到双向链表中的方法对数组A进行排序。算法对链表的当前操作位置进行维护

c++二、通过将其元素插入到双向链表中的方法对数组A进行排序。算法对链表的当前操作位置进行维护,当需要插入表项时,若新元素比当前位置值要大,则往前移动;若小则往后移动。编写函数DoubleSort实现上述排序算法。 template <class T> void DoubliSort( T a[], int n) ...
https://www.eeworm.com/dl/644/320437.html
下载: 187
查看: 1041