smtp 邮件发送客户端
利用socket mfc实现邮件发送smtp协议,在桌面发送你的邮件!资源包括可执行文件和设计报告,仅供参考!
socket ftp客户端程序
实现ftp上传下载等功能,提供设计报告和可执行文件,功能尚不完全,仅供参考。
directshow多媒体播放器
实现播放器的基本功能 快进 快退 全屏 进度和音量调节,有设计报告和可执行文件,仅供参考。
Qt API4_3_4
Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4Qt API4_3_4
Linux英文原版图书系列(26----30)
[Linux英文原版图书系列].PRENTICE_HALL-The_Official_Samba3_HOWTO_and_Reference_Guide_Second_Edition
[Linux英文原版图书系列].Redhat-Maximum_RPM_Second_Edition
[Linux英文原版图书系列].SAMS-Advanced_Linux_Programming
[Linux英文原版图书系列].SAMS-Linux_Shell_Scripting_With_Bash
[Linux英文原版图书系列].Slackware.Linux.Essentials
Linux英文原版图书系列(18----25)
[Linux英文原版图书系列].OREILLY-Using_Samba_Second_Edition
[Linux英文原版图书系列].PRENTICE_HALL_Self_Service_Linux_Mastering_The_Art_Of_Problem_Determination
[Linux英文原版图书系列].PRENTICE_HALL-A_Practical_Guide_To_Linux_Commands_Editors_And_Shell_Program
[Linux英文原版图书系列].PRENTICE_HALL-Building_Applications_With_The_Linux_Standard_Base
[Linux英文原版图书系列].PRENTICE_HALL-Linux_Assembly_Language_Programming
[Linux英文原版图书系列].PRENTICE_HALL-Optimizing_Linux_Performance_A_Hands_On_Guide_To_Linux_Perfor
[Linux英文原版图书系列].PRENTICE_HALL-Samba3_by_Example_Practical_Exercises_to_Successful_Deploymen
[Linux英文原版图书系列].PRENTICE_HALL-The_Linux_Kernel_Primer_A_Top_Down_Approach_For_x86_and_Power
Linux英文原版图书系列(10----17)
[Linux英文原版图书系列].OREILLY-Learning_Red_Hat_Enterprise_Linux_And_Fedora_Forth_Edition
[Linux英文原版图书系列].OREILLY-Learning_The_Bash_Shell_Third_Edition
[Linux英文原版图书系列].OREILLY-Learning_The_UNIX_Operating_System
[Linux英文原版图书系列].OREILLY-Linux_in_a_Nutshell_Fifth_Edition
[Linux英文原版图书系列].OREILLY-Linux_Security_Cookbook
[Linux英文原版图书系列].OREILLY-Linux_Server_Hacks_Volume_Two
[Linux英文原版图书系列].OREILLY-Understanding_The_Linux_Kernel_Second_Edition
[Linux英文原版图书系列].OREILLY-Understanding_the_Linux_Kernel_Third_Edition
Linux英文原版图书系列(1----9)
[Linux英文原版图书系列].APRESS-Automating_Unix_And_Linux_Administration
[Linux英文原版图书系列].APRESS-Tuning_And_Customizing_A_Linux_System
[Linux英文原版图书系列].CHARLES_RIVER_MEDIA-Gnu_Linux_Application_Programming
[Linux英文原版图书系列].Linux_C_Plus_Plus_Programming_HOWTO
[Linux英文原版图书系列].NO_STARCH-Linux_Enterprise_Cluster
[Linux英文原版图书系列].OREILIY-Learning_The_VI_Editor_Sixth_Edition
[Linux英文原版图书系列].OREILLY-Building_Embedded_Linux_Systems
[Linux英文原版图书系列].OREILLY-Building_Secure_Servers_with_Linux
[Linux英文原版图书系列].OREILLY-Classic_Shell_Scripting
Effective STL-revised (英文版)
Containers........................................................................................1
Item 1. Choose your containers with care...........................................................1
Item 2. Beware the illusion of container-independent code................................4
Item 3. Make copying cheap and correct for objects in containers.....................9
Item 4. Call empty instead of checking size() against zero. .............................11
Item 5. Prefer range member functions to their single-element counterparts...12
Item 6. Be alert for C++'s most vexing parse...................................................20
Item 7. When using containers of newed pointers, remember to delete the
pointers before the container is destroyed............................................................22
Item 8. Never create containers of auto_ptrs. ...................................................27
Item 9. Choose carefully among erasing options..............................................29
Item 10. Be aware of allocator conventions and restrictions..........................34
Item 11. Understand the legitimate uses of custom allocators........................40
Item 12. Have realistic expectations about the thread safety of STL containers.
43
vector and string............................................................................48
Item 13. Prefer vector and string to dynamically allocated arrays..................48
Item 14. Use reserve to avoid unnecessary reallocations................................50
Item 15. Be aware of variations in string implementations............................52
Item 16. Know how to pass vector and string data to legacy APIs. ...............57
Item 17. Use "the swap trick" to trim excess capacity....................................60
Item 18. Avoid using vector<bool>................................................................62
Associative Containers..................................................................65
Item 19. Understand the difference between equality and equivalence..........65
Item 20. Specify comparison types for associative containers of pointers.....69
Item 21. Always have comparison functions return false for equal values....73
Item 22. Avoid in-place key modification in set and multiset........................76
Item 23. Consider replacing associative containers with sorted vectors. .......81
Item 24. Choose carefully between map::operator[] and map-insert when
efficiency is important..........................................................................................87
Item 25. Familiarize yourself with the nonstandard hashed containers..........91
Iterators..........................................................................................96
Item 26. Prefer iterator to const iterator, reverse_iterator, and
const_reverse_iterator...........................................................................................96
Item 27. Use distance and advance to convert a container's const_iterators to
iterators. 99
Item 28. Understand how to use a reverse_iterator's base iterator................102
Item 29. Consider istreambuf_iterators for character-by-character input.....104
Algorithms ...................................................................................107
Item 30. Make sure destination ranges are big enough.................................107
Item 31. Know your sorting options. ............................................................112
Item 32. Follow remove-like algorithms by erase if you really want to remove
something. 117
Item 33. Be wary of remove-like algorithms on containers of pointers.......121
Item 34. Note which algorithms expect sorted ranges..................................124
Item 35. Implement simple case-insensitive string comparisons via mismatch
or lexicographical compare.................................................................................127
Item 36. Understand the proper implementation of copy_if.........................131
Item 37. Use accumulate or for_each to summarize ranges. ........................133
Functors, Functor Classes, Functions, etc.................................139
Item 38. Design functor classes for pass-by-value. ......................................139
Item 39. Make predicates pure functions......................................................142
Item 40. Make functor classes adaptable......................................................145
Item 41. Understand the reasons for ptr_fun, mem_fun, and mem_fun_ref.149
Item 42. Make sure less<T> means operator<..............................................152
Programming with the STL .......................................................156
Item 43. Prefer algorithm calls to hand-written loops. .................................156
Item 44. Prefer member functions to algorithms with the same names........163
Item 45. Distinguish among count, find, binary search, lower_bound,
upper_bound, and equal_range...........................................................................166
Item 46. Consider function objects instead of functions as algorithm
parameters. 174
Item 47. Avoid producing write-only code...................................................178
Item 48. Always #include the proper headers...............................................180
Item 49. Learn to decipher STL-related compiler diagnostics......................182
Item 50. Familiarize yourself with STL-related web sites............................188
Microsoft ADO 程序员参考
Microsoft® ActiveX® Data Objects (ADO) 使您能够编写通过 OLE DB 提供者对在数据库服务器中的数据进行访问和操作的应用程序。其主要优点是易于使用、高速度、低内存支出和占用磁盘空间较少。ADO 支持用于建立基于客户端/服务器和 Web 的应用程序的主要功能。
ADO 同时具有远程数据服务 (RDS) 功能,通过 RDS 可以在一次往返过程中实现将数据从服务器移动到客户端应用程序或 Web 页、在客户端对数据进行处理然后将更新结果返回服务器的操作。RDS 以前的版本是 Microsoft Remote Data Service 1.5,现在,RDS 已经与 ADO 编程模型合并,以便简化客户端数据的远程操作。
全面了解JDO数据库编程
全面了解JDO数据库编程
全面了解JDO数据库编程
全面了解JDO数据库编程
全面了解JDO数据库编程
全面了解JDO数据库编程
全面了解JDO数据库编程
全面了解JDO数据库编程
《Oracle SQL必备参考》(pdg)
《Oracle SQL必备参考》
《Oracle SQL必备参考》
《Oracle SQL必备参考》
《Oracle SQL必备参考》
《Oracle SQL必备参考》
《Oracle SQL必备参考》
《Oracle SQL必备参考》
Sybase数据库系统管理指南(PDG)
Sybase数据库系统管理指南(PDG)
Sybase数据库系统管理指南(PDG)
Sybase数据库系统管理指南(PDG)
Sybase数据库系统管理指南(PDG)
Sybase数据库系统管理指南(PDG)
Sybase数据库系统管理指南(PDG)
Sybase数据库系统管理指南(PDG)
标准建模语言UML教程
标准建模语言UML教程
标准建模语言UML教程
标准建模语言UML教程
标准建模语言UML教程
标准建模语言UML教程
标准建模语言UML教程
标准建模语言UML教程
MySQL 精华技巧(CHM) 英文版
MySQL—Essential Skills
Introduction
Module 1 - Installing MySQL
Module 2 - Defining a Database
Module 3 - Manipulating the Database
Module 4 - Basic Reporting
Module 5 - Advanced Reporting
Module 6 - GUIs for Data Handling and Administration
Module 7 - Interfacing with Programs
Module 8 - Basic Administration and Backups
Appendix A - Answers to Mastery Checks
Appendix B - Reserved Words
Appendix C - PHP Installation and Basic Syntax
Index
List of Figures
List of Tables
List of Sidebars
《MySQL 系统管理员指南(CHM)》 (英文版)
Copyright
About this Book
We Want to Hear from You!
Chapter 1. General Information
Section 1.1. About This Guide
Section 1.2. Overview of the MySQL Database Management System
Section 1.3. Overview of MySQL AB
Section 1.4. MySQL Support and Licensing
Section 1.5. MySQL Development Roadmap
Section 1.6. MySQL and the Future (the TODO)
Section 1.7. MySQL Information Sources
Section 1.8. MySQL Standards Compliance
Chapter 2. Installing MySQL
Section 2.1. General Installation Issues
Section 2.2. Standard MySQL Installation Using a Binary Distribution
Section 2.3. MySQL Installation Using a Source Distribution
Section 2.4. Post-Installation Setup and Testing
Section 2.5. Upgrading/Downgrading MySQL
Section 2.6. Operating System–Specific Notes
Section 2.7. Perl Installation Notes
Chapter 3. Using MySQL Programs
Section 3.1. Overview of MySQL Programs
Section 3.2. Invoking MySQL Programs
Section 3.3. Specifying Program Options
Chapter 4. Database Administration
Section 4.1. The MySQL Server and Server Startup Scripts
Section 4.2. Configuring the MySQL Server
Section 4.3. General Security Issues
Section 4.4. The MySQL Access Privilege System
Section 4.5. MySQL User Account Management
Section 4.6. Disaster Prevention and Recovery
Section 4.7. MySQL Localization and International Usage
Section 4.8. The MySQL Log Files
Section 4.9. Running Multiple MySQL Servers on the Same Machine
Section 4.10. The MySQL Query Cache
Chapter 5. Replication in MySQL
Section 5.1. Introduction to Replication
Section 5.2. Replication Implementation Overview
Section 5.3. Replication Implementation Details
Section 5.4. How to Set Up Replication
Section 5.5. Replication Compatibility Between MySQL Versions
Section 5.6. Upgrading a Replication Setup
Section 5.7. Replication Features and Known Problems
Section 5.8. Replication Startup Options
Section 5.9. Replication FAQ
Section 5.10. Troubleshooting Replication
Section 5.11. Reporting Replication Bugs
Chapter 6. MySQL Optimization
Section 6.1. Optimization Overview
Section 6.2. Optimizing SELECT Statements and Other Queries
Section 6.3. Locking Issues
Section 6.4. Optimizing Database Structure
Section 6.5. Optimizing the MySQL Server
Section 6.6. Disk Issues
Chapter 7. MySQL Client and Utility Programs
Section 7.1. Overview of the Client-Side Scripts and Utilities
Section 7.2. myisampack, the MySQL Compressed Read-Only Table Generator
Section 7.3. mysql, the Command-Line Tool
Section 7.4. mysqladmin, Administering a MySQL Server
Section 7.5. The mysqlbinlog Binary Log Utility
Section 7.6. mysqlcc, the MySQL Control Center
Section 7.7. The mysqlcheck Table Maintenance and Repair Program
Section 7.8. The mysqldump Database Backup Program
Section 7.9. The mysqlhotcopy Database Backup Program
Section 7.10. The mysqlimport Data Import Program
Section 7.11. mysqlshow, Showing Databases, Tables, and Columns
Section 7.12. perror, Explaining Error Codes
Section 7.13. The replace String-Replacement Utility
Chapter 8. MySQL Storage Engines and Table Types
Section 8.1. The MyISAM Storage Engine
Section 8.2. The MERGE Storage Engine
Section 8.3. The MEMORY (HEAP) Storage Engine
Section 8.4. The BDB (BerkeleyDB) Storage Engine
Section 8.5. The ISAM Storage Engine
Chapter 9. The InnoDB Storage Engine
Section 9.1. InnoDB Overview
Section 9.2. InnoDB Contact Information
Section 9.3. InnoDB in MySQL 3.23
Section 9.4. InnoDB Configuration
Section 9.5. InnoDB Startup Options
Section 9.6. Creating the InnoDB Tablespace
Section 9.7. Creating InnoDB Tables
Section 9.8. Adding and Removing InnoDB Data and Log Files
Section 9.9. Backing Up and Recovering an InnoDB Database
Section 9.10. Moving an InnoDB Database to Another Machine
Section 9.11. InnoDB Transaction Model and Locking
Section 9.12. InnoDB Performance Tuning Tips
Section 9.13. Implementation of Multi-Versioning
Section 9.14. Table and Index Structures
Section 9.15. File Space Management and Disk I/O
Section 9.16. Error Handling
Section 9.17. Restrictions on InnoDB Tables
Section 9.18. InnoDB Troubleshooting
Chapter 10. Introduction to MaxDB
Section 10.1. History of MaxDB
Section 10.2. Licensing and Support
Section 10.3. MaxDB-Related Links
Section 10.4. Basic Concepts of MaxDB
Section 10.5. Feature Differences Between MaxDB and MySQL
Section 10.6. Interoperability Features Between MaxDB and MySQL
Section 10.7. Reserved Words in MaxDB
Appendix A. Troubleshooting Problems with MySQL Programs
Section A.1. How to Determine What Is Causing a Problem
Section A.2. Common Errors When Using MySQL Programs
Section A.3. Installation-Related Issues
Section A.4. Administration-Related Issues
Appendix B. Environment Variables
单片机的C语言应用程序设计(pdg文件)
第一章 单片机基础知识
第二章 C与8051
第三章 C51数据与运算
第四章 C51流程控制语句
第五章 C51构造数据类型
第六章 函数
第七章 模块化程序设计
第八章 8051内部资源的C编程
第九章 8051扩展资源的C编程
第十章 8051输出控制的C编程
第十一章 8051数据采集的C编程
第十二章 8051机间通信的C编程
第十三章 8051人机交互的C编程
附录A 具有51内核的单片机
附录B Franklin C51上机指南
附录C 用Easy Pack/E调试源程序
附录D 单片机/16位微机教学实验开发系统
Java手机程序设计入门
第一章 Java 2 Micro Edition概論
第二章 Java程式設計簡介
第三章 撰寫您的第一個手機程式
第四章 在實體機器上執行MIDlet
第五章 J2ME Wireless Toolkit
第六章 Motorola A6288手機程式開發
第七章 JBuilder MobileSet
第八章 MIDP for Palm
第九章 MIDlet的事件處理
第十章 MIDP圖形使用者介面程式設計
第十一章 MIDP圖形處理
第十二章 MIDP資料庫程式設計
第十三章 MIDP網路程式設計
附錄A MID其他參考資源總整理
附錄B Motorola J2ME SDK
Visual Basic 语言参考 chm格式的
Visual Basic 语言参考
Visual Basic 语言参考
Visual Basic 语言参考
Visual Basic 语言参考
Visual Basic 语言参考
Visual Basic 语言参考
Visual Basic 语言参考
DOS 常用命令宝典 DOS 常用命令宝典
现在虽然是windows的天下了,但是DOS以小巧方便、可对硬件直接操作等诸多优点,在PC使用中仍占有一席之地.正如一句话所说:DOS不是万能的,但没有DOS却是万万不能的.那么该如何学习DOS呢?我认为:
1.正确认识DOS的作用:windows都已经发展到了XP,可以说DOS已经没有多少商业价值了.与其花费大量时间去背什么DOS命令全集,倒不如深入学习一下PQMAGIC的使用或学着做一下启动盘.
2.不要抱陈守旧:微软虽然早就停止了对DOS的开发,但DOS的发展并未中止,一些公司(个人)制作出了大量优秀的DOS软件,其中很多都比DOS自带的强大、实用的多.再有就是DOS系统,虽然MS-DOS 6.22是最经典的版本,但它并不是最好用的.目前最实用、兼容性最好的版本是7.10,我们应该使用它.
3.不要对DOS过度狂热(有志于研究操作系统历史的朋友除外):DOS是一个工具,我们只是用它来辅助Win做一些Win下做不到的事情,如:初始化硬盘、修复系统等.所以当在Win下点几次鼠标就可以搞定的事情,根本没必要大费周折在DOS下完成.比如DOS下如何上网、如何听MP3、如何画图...我想没有人会认为DOS下的WPS比Win下的Word好用吧?
4.学习使用一些经典软件:擅用各种工具会使您的工作事半功倍,特别是一些经典的工具.如:PQMAGIC、DISKGEN、GHOST...
所谓万事开头难,学习DOS也是一样,特别是现在大多数朋友都是从Win开始接触电脑的,学习DOS更是难上加难.如果这时再让他拿一本"命令大全"来看的话,往往会产生一种畏惧、厌烦心理,多半也是半途而废.其实像一些不常用命令,即使记住了,慢慢也会忘记的.
为了使朋友们能够快速步入DOS殿堂,高效地掌握DOS命令,我把常用的一些DOS命令做成这本电子书.以期它能成为您打开DOS大门的金钥匙
Windows环境下32位汇编语言程序设计
Windows环境下32位汇编语言程序设计
Windows环境下32位汇编语言程序设计
Windows环境下32位汇编语言程序设计
Windows环境下32位汇编语言程序设计
Windows环境下32位汇编语言程序设计
Windows环境下32位汇编语言程序设计
Windows环境下32位汇编语言程序设计
win32汇编语言教程
win32汇编语言教程.chm
win32汇编语言教程.chm
win32汇编语言教程.chm
win32汇编语言教程.chm
win32汇编语言教程.chm
win32汇编语言教程.chm
win32汇编语言教程.chm
汇编语言基础.7z html版的
汇编语言基础.7z html版的
汇编语言基础.7z html版的
汇编语言基础.7z html版的
汇编语言基础.7z html版的
汇编语言基础.7z html版的
汇编语言基础.7z html版的
汇编语言基础.7z html版的
javascript语言参考手册
javascript语言参考手册
javascript语言参考手册
javascript语言参考手册
javascript语言参考手册
javascript语言参考手册
javascript语言参考手册
javascript语言参考手册
javascript与html实用教程 pdf
javascript与html实用教程
javascript与html实用教程
javascript与html实用教程
javascript与html实用教程
javascript与html实用教程
javascript与html实用教程
javascript与html实用教程
PS制作500典例 photoshop
PS制作500典例
学习 练习 photoshop别错过..
高质量C++/C编程指南 高质量C++/C编程指南
第 1 章 文件结构
1.1 版权和版本的声明
1.2 头文件的结构
1.3 定义文件的结构
1.4 头文件的作用
1.5 目录结构
第 2 章 程序的版式
2.1 空行
2.2 代码行
2.3 代码行内的空格
2.4 对齐
2.5 长行拆分
2.6 修饰符的位置
2.7 注释
2.8 类的版式第 3 章 命名规则
3.1 共性规则
3.2 简单的WINDOWS应用程序命名规则
3.3 简单的UNIX应用程序命名规则
第 4 章 表达式和基本语句
4.1 运算符的优先级
4.2 复合表达式
4.3 IF 语句
4.4 循环语句的效率
4.5 FOR 语句的循环控制变量
4.6 SWITCH语句
4.7 GOTO语句第 5 章 常量
5.1 为什么需要常量
5.2 CONST 与 #DEFINE的比较
5.3 常量定义规则
5.4 类中的常量
第 6 章 函数设计
...........
...........
...........
CSS 样式表中文手册
CSS 样式表中文手册
本手册是 Rainer's DHTML Library 产品的一部分。
本手册针对的是已有一定网页设计制作经验的读者。其目的是提供完整清晰的样式表内容的快速索引及进阶帮助。所以对于网页制作和样式表的基础知识,仅简单介绍,恕不赘述。
手册提供了完整的 CSS2.0 的属性(Properties)、规则(At-Rules)、伪类(Pseudo-Classes)、伪元素(Pseudo-Elements)、声明(Declarations)、单位(Units)、选择符(Selectors)的介绍。其内容涵括了 W3C 的 CSS2.0 标准,以及 Internet Explorer 和 Netscape 各自的私有内容。出于种种众所周知的原因考虑,本手册以浏览器的事实标准—— Internet Explorer 为主。
手册中为几乎所有的已被支持的属性、伪类、单位等,除了基本的语法示范外,都度身制作了可以对照源代码即时察看运行演示的实例。
Linux基础 Linux入门
Linux基础
Linux入门教程
Linux基础
Linux入门教程
Linux基础
Linux入门教程
Linux必学的重要命令教程
Linux必学的重要命令教程
Linux必学的重要命令教程
Linux必学的重要命令教程
Linux必学的重要命令教程
C语言练习题 C语言入门
一些C语言的练习题,由浅入深,适合于C语言入门
C语言参考手册(第五版)
产销的权威参考手册,对C语言的基本概念和运行库提供了完整的描述,同时还强调了以正确性、可移植性和可维护性为根本出发点的良好的C语言编程风格,被国外众多高校广泛采用微教材或权威参考书。
ASP.net Ajax开发
第1章:初识ASP.NET AJAX
第2章:AJAX Control Toolkit中的文本输入处理
第3章:基于AJAX的电子邮件处理
dot NET数据库开发技术
第1章 操作数据库
第2章 使用数据库
第3章 使用数据绑定和DataSet
第4章 SQL Server XML的功能
第5章 XML编程
第6章 数据映射方案
第7章 NHibernate事务、并发和缓
第8章 NHibernate高级数据映射和查询存
Visual C# 2005开发技术
第01章 C#与.NET Framework简介
第02章 C#程序设计基础
第03章 与用户交互
第04章 常用控件
第05章 类
第06章 抽象类、多态及接口
第07章 处理异常和错误
第08章 XML编程
第09章 应用程序部署
第10章 时间跟踪系统
ASM 汇编知识及问题集锦
ASM 汇编知识及问题集锦
文档中90%以上的内容来源于轻描淡写编程论坛的奇珍异宝栏目!
文档中代码着色部份由[老罗代码着色器]自动完成!强烈推荐!!!
数学辞典--数学知识速查
数学知识大集合!
第一章 代数、三角公式与初等函数
第二章 初等几何图形的计算与作图
第三章 代 数 方 程
第四章 矩阵-行列式-线性方程组
第五章 微 分 学
第六章 积 分 学
第七章 解析几何与微分几何
第八章 矢量算法与场论初步-张量算法与黎曼几何初步
第九章 抽象代数?线性空间?泛函分析
第十章 复变函数
第十一章 傅立叶级数与积分变换
第十二章 特殊函数
第十三章 常微分方程
第十四章 偏微分方程
第十五章 积分方程
第十六章 概率统计与随机过程
第十七章 误差理论与实验数据处理
第十八章 最优化方法
第十九章 有限元法
第二十章 初等数论
第二十一章 集论与一般拓扑学
常用算法程序集(C语言描述) (第三版)附源代码
常用算法程序集(C语言描述) (第三版)
涉及:多项式的计算、复数运算随机数的产生、矩阵运算、矩阵的特征值与特征向量的计算、线性代数方程组的求解、非线性方程与与方程组的求解、差值与逼近、数值积分、常微分方程组的求解、数据处理、极值问题的求解、数学变换域滤波、特殊函数的计算、排序、查找
每个方面又有细分,可算是良好的工具书吧。