搜索结果
找到约 650 项符合
Set 的查询结果
按分类筛选
- 全部分类
- Java编程 (37)
- matlab例程 (36)
- 其他 (35)
- 单片机开发 (34)
- 技术资料 (31)
- 其他书籍 (30)
- 单片机编程 (24)
- Linux/Unix编程 (19)
- 电子书籍 (18)
- 书籍 (18)
- 人工智能/神经网络 (17)
- 数值算法/人工智能 (17)
- Delphi控件源码 (16)
- 微处理器开发 (13)
- 数学计算 (13)
- 通讯编程文档 (12)
- 数据结构 (11)
- VHDL/FPGA/Verilog (11)
- 通讯/手机编程 (10)
- 书籍源码 (9)
- Java书籍 (9)
- 软件设计/软件工程 (9)
- 嵌入式/单片机编程 (8)
- 其他行业 (8)
- 文章/文档 (8)
- 汇编语言 (8)
- 网络 (7)
- VC书籍 (7)
- 系统设计方案 (7)
- 加密解密 (6)
- *行业应用 (6)
- 技术管理 (6)
- 嵌入式Linux (6)
- 文件格式 (6)
- 电源技术 (5)
- 可编程逻辑 (5)
- 压缩解压 (5)
- 数据库系统 (5)
- 行业发展研究 (5)
- 模拟电子 (4)
- J2ME (4)
- 驱动编程 (4)
- VIP专区 (4)
- Internet/网络编程 (3)
- uCOS (3)
- DSP编程 (3)
- SCSI/ASPI (3)
- 游戏 (3)
- 邮电通讯系统 (3)
- SQL Server (3)
- USB编程 (3)
- 其他嵌入式/单片机内容 (3)
- Windows CE (3)
- 手机短信编程 (3)
- 技术书籍 (3)
- 行业应用文档 (3)
- Jsp/Servlet (3)
- 源码 (3)
- 通信网络 (2)
- 嵌入式综合 (2)
- C/C++语言编程 (2)
- 工控技术 (2)
- 并口编程 (2)
- 其他数据库 (2)
- GPS编程 (2)
- Applet (2)
- STL (2)
- 软件工程 (2)
- 家庭/个人应用 (2)
- 笔记 (2)
- 学术论文 (1)
- 教程资料 (1)
- 教程资料 (1)
- 传感与控制 (1)
- 开关电源 (1)
- 开发工具 (1)
- 测试测量 (1)
- 设计相关 (1)
- TAPI编程 (1)
- 串口编程 (1)
- 编译器/解释器 (1)
- 中间件编程 (1)
- VxWorks (1)
- 金融证券系统 (1)
- 教育系统应用 (1)
- JavaScript (1)
- Windows Mobile (1)
- 人物传记/成功经验 (1)
- 并行计算 (1)
- 电子政务应用 (1)
- MySQL数据库 (1)
- 多国语言处理 (1)
- 3G开发 (1)
- 接口技术 (1)
- Windows编程 (1)
- Linux/uClinux/Unix编程 (1)
- 行业应用 (1)
- 手册 (1)
数据结构 a non-sharing smart pointer class that can be used with STL containers such as std::map, vector, lis
a non-sharing smart pointer class that can be used with STL containers such as std::map, vector, list, set, and deque. The smart pointer has an assignment operator and greater than operator that call the target object s operator.
人工智能/神经网络 This program demonstrates some function approximation capabilities of a Radial Basis Function Networ
This program demonstrates some function approximation capabilities of a Radial Basis Function Network.
The user supplies a set of training points which represent some "sample" points for some arbitrary curve. Next, the user specifies the number of equally spaced gaussian centers and the variance for ...
其他 A series of .c and .m files which allow one to perform univariate and bivariate wavelet analysis of
A series of .c and .m files which allow one to perform univariate and bivariate wavelet analysis of discrete time series. Noother wavelet package is necessary -- everything is contained in this archive. The C-code computes the DWT and maximal overlap DWT. MATLAB routines are then used to compute suc ...
其他数据库 首先确认您的机器上已经安装了VC6.0以上版本
首先确认您的机器上已经安装了VC6.0以上版本,要编译生成可执行文件,需打开后缀名为dsw的文件,系统会默认用VC打开,然后选择Build菜单下的Set Active Configuration选项,选择Project Configuration为Win32 Release,然后编译项目,得到可执行文件。连接数据库请参照第2章的方法,在ODBC数据源内添加Microsoft Access数据 ...
VHDL/FPGA/Verilog Simple I2C controller -- 1) No multimaster -- 2) No slave mode -- 3) No fifo s -- -- notes:
Simple I2C controller
-- 1) No multimaster
-- 2) No slave mode
-- 3) No fifo s
--
-- notes:
-- Every command is acknowledged. Do not set a new command before previous is acknowledged.
-- Dout is available 1 clock cycle later as cmd_ack
数据结构 定义一个字符串类String
定义一个字符串类String,其私有成员为一个字符串指针。设计构造函数,拷贝构造函数,析构函数,设置新值函数Set, 打印成员值函数Print。借助此String类,将操作符"=="、">"、"<"的重载函数设置为String类的成员函数,实现对操作符"=="、">"、"<"的重载,使之能直接比较两个String类类型的字符串的大小 ...
数据结构 首先定义一个点类Point
首先定义一个点类Point,其私有成员为其坐标X,Y。设计构造函数,拷贝构造函数,析构函数(可以什么都不做,只打印信息,表示其被调用),设置新值函数Set, 打印成员值函数Print。再定义一个线类Line,线类是在公有继承点类的基础上,新增私有成员斜率S,并设计构造函数,拷贝构造函数,析构函数(可以什么都不做,只打印信 ...
VC书籍 本书第二版和第三版之间的变化非常大其中最值得注意的是C++已经通过了国际标 准化这不但为语言增加了新的特性比如异常处理运行时刻类型识别RTTI 名字空 间内置布尔数据类型新的强制转换方式而且还大量
本书第二版和第三版之间的变化非常大其中最值得注意的是C++已经通过了国际标
准化这不但为语言增加了新的特性比如异常处理运行时刻类型识别RTTI 名字空
间内置布尔数据类型新的强制转换方式而且还大量修改并扩展了现有的特性比如模
板template 支持面向对象object-oriented 和基于对象object-based 程序设计所需
要的类clas ...
数据结构 AVL Tree implementation: I also included a test function to compare the AVL Tree performance with S
AVL Tree implementation:
I also included a test function to compare the AVL Tree performance with STL Set and Map.
Compile the source mavltree.cpp and run it to see the result!