这本书的特色是其中充满了如何写好的C++程序的建议(每一章后都有Advice的总结),如何用C++进行软件设计的思想贯穿整本书。事实上,第四部分的三章全部在讲如何用C++进行好的设计。第三部分较为详细地讲述了STL的设计。STL可以说是C++的第一个优美的设计,其设计原理可以给一般C++程序员提供一个好的设计的范例。它对C++语言的各方面作了最权威、详尽的描述。但它对于初学者而言似乎太难了,阅读书中充满模板的代码对初学者是一个挑战。有一定工程实践的人对于作者讲的那些advice才会有深切体会。对于初学者,我建议先读《C++ Primer》。另外推荐的是《The Design and Evolution of C++》,讲C++的历史的,很是有趣!
2021-12-22 14:42:37 5.66MB c++ 高清 英文原版 第四版
1
The C++ Programming Language (4th Edition)是C++的发明者Bjarne stroustrup的最新关于C++的论述,包含的了最新的C++11特性,是学习C++的权威著作!
2021-12-22 09:11:26 10.33MB C++ 4th 第四版
1
细胞分子生物学, 英文原版,第四版(molecular biology of the cell)
2021-12-21 20:12:08 90.6MB 细胞生物学 英文原版
1
Cocoa.Programming.for.Mac.OS.X.4th.Edition.pdf+源代码.zip 包括书籍 和 书中代码
2021-12-21 01:27:46 10.64MB Cocoa Programming 4th 源代码
1
Fundamentals.of.Computer.Graphics.4th.Edition 计算机图形学经典书籍 英文原版
2021-12-20 14:20:30 55.99MB Computer Gra
1
E-Business and E-Commerce Management_ Strategy, Implementation and Practice, 4th Edition这本,学电子商贸的有福啦~
2021-12-18 23:39:02 9.89MB 1234
1
解压密码 share.weimo.info Learn how to successfully administer, build, and manage Salesforce CRM and Salesforce mobile solutions using real-world and best practice techniquesSalesforce CRM’s Winter ’17 release offers a host of new features for CRM designed to transform your sales and marketing requirements. With this comprehensive guide to implementing Salesforce CRM, administrators of all levels can easily acquire deep knowledge of the platform. The begins by guiding you through setting up users and the security settings and then progresses to configuration, data management, and data analytics. We swiftly move on to the setting up of organization wide features that affect the look and feel of the application. Process automation and approval mechanisms are covered next, along with the functional areas of Sales Cloud, Service Cloud, Marketing Cloud, and Salesforce Chatter. This details Salesforce CRM system administration in a practical way and is an invaluable reference for both new administrators and experienced professionals.At the end of the , techniques to further enhance the system and improve the return on investment Salesforce mobile apps and mobile administration are covered, along with Salesforce Adoption Manager. Every chapter is complete with a section containing example questions of the type that you might encounter in the certification examination.,解压密码 share.weimo.info
2021-12-17 17:54:29 18.6MB 英文
1
算法,4th,塞奇威克,中文版 《图灵程序设计丛书:算法(第4版)》编辑推荐:Sedgewick之巨著,与高德纳TAOCP一脉相承,几十年多次修订,经久不衰的畅销书,涵盖所有程序员必须掌握的50种算法。《图灵程序设计丛书:算法(第4版)》全面讲述算法和数据结构的必备知识,具有以下几大特色: 算法领域的经典参考书:Sedgewick畅销著作的最新版,反映了经过几十年演化而成的算法核心知识体系。 内容全面:全面论述排序、搜索、图处理和字符串处理的算法和数据结构,涵盖每位程序员应知应会的50种算法。 全新修订的代码:全新的Java实现代码,采用模块化的编程风格,所有代码均可供读者使用。 与实际应用相结合:在重要的科学、工程和商业应用环境下探讨算法,给出了算法的实际代码,而非同类著作常用的伪代码。 富于智力趣味性:简明扼要的内容,用丰富的视觉元素展示的示例,精心设计的代码,详尽的历史和科学背景知识,各种难度的练习,这一切都将使读者手不释卷。 科学的方法:用合适的数学模型精确地讨论算法性能,这些模型是在真实环境中得到验证的。 与网络相结合:配套网站algs4.cs.princeton.edu提供了本书内容的摘要及相关的代码、测试数据、编程练习、教学课件等资源。 作者简介 作者:(美国)塞奇威克(Robert Sedgewick)^韦恩(Kevin Wayne) 译者:谢路云 塞奇威克(Robert Sedgewick),斯坦福大学博士,导师为Donald E. Knuth,从1985年开始一直担任普林斯顿大学计算机科学系教授,曾任该系主任,也是Adobe Systems公司董事会成员,曾在Xerox PARC、国防分析研究所(institute for Defense Analyses)和法国国家信息与自动化研究所(INRIA)从事研究工作。他的研究方向包括解析组合学、数据结构和算法的分析与设计、程序可视化等。 韦恩(Kevin Wayne),康奈尔大学博士,普林斯顿大学计算机科学系高级讲师,研究方向包括算法的设计、分析和实现,特别是图和离散优化。 目录 第1章 基础 1.1 基础编程模型 1.1.1 Java程序的基本结构 1.1.2 原始数据类型与表达式 1.1.3 语句 1.1.4 简便记法 1.1.5 数组 1.1.6 静态方法 1.1.7 API 1.1.8 字符串 1.1.9 输入输出 1.1.10 二分查找 1.1.11 展望 1.2 数据抽象 1.2.1 使用抽象数据类型 1.2.2 抽象数据类型举例 1.2.3 抽象数据类型的实现 1.2.4 更多抽象数据类型的实现 1.2.5 数据类型的设计 1.3 背包、队列和栈 1.3.1 API 1.3.2 集合类数据类型的实现 1.3.3 链表 1.3.4 综述 1.4 算法分析 1.4.1 科学方法 1.4.2 观察 1.4.3 数学模型 1.4.4 增长数量级的分类 1.4.5 设计更快的算法 1.4.6 倍率实验 1.4.7 注意事项 1.4.8 处理对于输入的依赖 1.4.9 内存 1.4.10 展望 1.5 案例研究:union—find算法 1.5.1 动态连通性 1.5.2 实现 1.5.3 展望 第2章 排序 2.1 初级排序算法 2.1.1 游戏规则 2.1.2 选择排序 2.1.3 插入排序 2.1.4 排序算法的可视化 2.1.5 比较两种排序算法 2.1.6 希尔排序 2.2 归并排序 2.2.1 原地归并的抽象方法 2.2.2 自顶向下的归并排序 2.2.3 自底向上的归并排序 2.2.4 排序算法的复杂度 2.3 快速排序 2.3.1 基本算法 2.3.2 性能特点 2.3.3 算法改进 2.4 优先队列 2.4.1 API 2.4.2 初级实现 2.4.3 堆的定义 2.4.4 堆的算法 2.4.5 堆排序 2.5 应用 2.5.1 将各种数据排序 2.5.2 我应该使用哪种排序算法 2.5.3 问题的归约 2.5.4 排序应用一览 第3章 查找 3.1 符号表 3.1.1 API 3.1.2 有序符号表 3.1.3 用例举例 3.1.4 无序链表中的顺序查找 3.1.5 有序数组中的二分查找 3.1.6 对二分查找的分析 3.1.7 预览 3.2 二叉查找树 3.2.1 基本实现 3.2.2 分析 3.2.3 有序性相关的方法与删除操作 3.3 平衡查找树 3.3.12—3查找树 3.3.2 红黑二叉查找树 3.3.3 实现 3.3.4 删除操作 3.3.5 红黑树的性质
2021-12-05 14:13:50 19.61MB 算法 塞奇威克 Sedgewick 第4版
1
Details Title: Digital Image Processing, 4th Edition Author: Rafael C. Gonzalez, Richard E. Woods Length: 1192 pages Edition: 4 Language: English Publisher: Pearson Publication Date: 2017-03-30 ISBN-10: 0133356728 ISBN-13: 9780133356724 Sales Rank: #680902 (See Top 100 Books) Categories Computers & Technology Engineering & Transportation Engineering Textbooks Description Introduce your students to image processing with the industry’s most prized text For 40 years, Image Processing has been the foundational text for the study of digital image processing. The book is suited for students at the college senior and first-year graduate level with prior background in mathematical analysis, vectors, matrices, probability, statistics, linear systems, and computer programming. As in all earlier editions, the focus of this edition of the book is on fundamentals. The 4th Edition, which celebrates the book’s 40th anniversary, is based on an extensive survey of faculty, students, and independent readers in 150 institutions from 30 countries. Their feedback led to expanded or new coverage of topics such as deep learning and deep neural networks, including convolutional neural nets, the scale-invariant feature transform (SIFT), maximally-stable extremal regions (MSERs), graph cuts, k-means clustering and superpixels, active contours (snakes and level sets), and exact histogram matching. ?Major improvements were made in reorganizing the material on image transforms into a more cohesive presentation, and in the discussion of spatial kernels and spatial filtering. ?Major revisions and additions were made to examples and homework exercises throughout the book. For the first time, we added MATLAB projects at the end of every chapter, and compiled support packages for you and your teacher containing, solutions, image databases, and sample code. The support materials for this title can be found at www.ImageProcessingPlace.com
2021-12-03 22:33:35 85.78MB CV 计算机视觉 图像处理 ImageProcessing
1
Gilbert Strang写的第4版Introduction to Linear Algebra,而且全书是彩色的,例子中的矩阵会用不同的颜色,要点也有不同颜色
2021-12-03 20:41:40 123.77MB 线性代数 linear algeb Gilbert
1