算法设计手册(第2版)(大学计算机教育国外著名教材系列(影印版)) 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线

算法设计手册(第2版)(大学计算机教育国外著名教材系列(影印版))精美图片
》算法设计手册(第2版)(大学计算机教育国外著名教材系列(影印版))电子书籍版权问题 请点击这里查看《

算法设计手册(第2版)(大学计算机教育国外著名教材系列(影印版))书籍详细信息

  • ISBN:9787302207276
  • 作者:暂无作者
  • 出版社:暂无出版社
  • 出版时间:2009-09
  • 页数:707
  • 价格:58.60
  • 纸张:胶版纸
  • 装帧:平装
  • 开本:16开
  • 语言:未知
  • 丛书:暂无丛书
  • TAG:暂无
  • 豆瓣评分:暂无豆瓣评分
  • 豆瓣短评:点击查看
  • 豆瓣讨论:点击查看
  • 豆瓣目录:点击查看
  • 读书笔记:点击查看
  • 原文摘录:点击查看
  • 更新时间:2025-01-20 16:08:46

内容简介:

本书是算法设计畅销书的*版本,是设计实用且高效算法的全面指导书。本书揭密了算法的设计与分析,以简单易懂的写作风格,介绍了各种算法技术,着重强调了算法分析,全书包括两大部分,“技术”部分介绍了设计和分析计算机算法的各种方法,“资源”部分给出了大量的参考资源,以及算法实现的各种资源,此外,在作者的个人网址http://www.CS.sunysb.edu/~algorith/I-还提供了各种教学资源和参考材料,这些资源对读者很有参考价值。

本书可以作为算法设计课程的主教材,也是程序人员、研究人员和学生的常备参考书。


书籍目录:

I Practical Algorithm Design

 1 Introduction to Algorithm Design

  1.1 Robot Tour Optimization

  1.2 Selecting the Right Jobs

  1.3 Reasoning about Correctness

  1.4 Modeling the Problem

  1.5 About the War Stories

  1.6 War Story: Psychic Modeling

  1.7 Exercises

 2 Algorithm Analysis

  2.1 The RAM Model of Computation

  2.2 The Big Oh Notation

  2.3 Growth Rates and Dominance Relations

  2.4 Working with the Big Oh

  2.5 Reasoning About Efficiency

  2.6 Logarithms and Their Applications

  2.7 Properties of Logarithms

  2.8 War Story: Mystery of the Pyramids

  2.9 Advanced Analysis (*)

  2.10 Exercises

 3 Data Structures

  3.1 Contiguous vs. Linked Data Structures.

  3.2 Stacks and Queues

  3.3 Dictionaries

  3.4 Binary Search Trees

  3.5 Priority Queues

  3.6 War Story: Stripping Triangulations

  3.7 Hashing and Strings

  3.8 Specialized Data Structures

  3.9 War Story: String 'em Up

  3.10 Exercises

 4 Sorting and Searching

  4.1 Applications of Sorting

  4.2 Pragmatics of Sorting

  4.3 Heapsort: Fast Sorting via Data Structures

  4.4 War Story: Give me a Ticket on an Airplane

  4.5 Mergesort: Sorting by Divide-and-Conquer

  4.6 Quicksort: Sorting by Randomization

  4.7 Distribution Sort: Sorting via Bucketing

  4.8 War Story: Skiena for the Defense

  4.9 Binary Search and Related Algorithms

  4.10 Divide-and-Conquer

  4.11 Exercises

 5 Graph Traversal

  5.1 Flavors of Graphs

  5.2 Data Structures for Graphs

  5.3 War Story: I was a Victim of Moore's Law

  5.4 War Story: Getting the Graph

  5.5 Traversing a Graph

  5.6 Breadth-First Search

  5.7 Applications of Breadth-First Search

  5.8 Depth-First Search

  5.9 Applications of Depth-First Search

  5.10 Depth-First Search on Directed Graphs

  5.11 Exercises

 6 Weighted Graph Algorithms

  6.1 Minimum Spanning Trees

  6.2 War Story: Nothing but Nets

  6.3 Shortest Paths

  6.4 Wax Story: Dialing for Documents

  6.5 Network Flows and Bipartite Matching

  6.6 Design Graphs, Not Algorithms

  6.7 Exercises

……


作者介绍:

暂无相关内容,正在全力查找中


出版社信息:

暂无出版社相关信息,正在全力查找中!


书籍摘录:

暂无相关书籍摘录,正在全力查找中!



原文赏析:

Typical computer science students study the basic sorting algorithms at least three times before they graduate: first in introductory programming, then in data structures, and finally in their algorithms course.


When you have morethan 100 items to sort, it is important to use an O(nlgn)-time algorithm like heapsort, quicksort, or mergesort.

... Once you get past (say) 5,000,000 items, it is important to start thinking about external-memory sorting algorithms that minimize disk access.


If you are determined to implement your own quicksort, use the following heuristics, which make a big difference in practice:

* Use ranomization

* Median of three

* Leave small subarrays for insertion sort

* Do the smaller partition first


其它内容:

书籍介绍

《算法设计手册(第2版)》是算法设计畅销书的最新版本,是设计实用且高效算法的最全面指导书。《算法设计手册(第2版)》揭密了算法的设计与分析,以简单易懂的写作风格,介绍了各种算法技术,着重强调了算法分析,全书包括两大部分,“技术”部分介绍了设计和分析计算机算法的各种方法,“资源”部分给出了大量的参考资源,以及算法实现的各种资源,此外,在作者的个人网址http://www.CS.sunysb.edu/~algorith/I-还提供了各种教学资源和参考材料,这些资源对读者很有参考价值。

《算法设计手册(第2版)》可以作为算法设计课程的主教材,也是程序人员、研究人员和学生的常备参考书。


书籍真实打分

  • 故事情节:5分

  • 人物塑造:6分

  • 主题深度:3分

  • 文字风格:7分

  • 语言运用:9分

  • 文笔流畅:3分

  • 思想传递:3分

  • 知识深度:9分

  • 知识广度:6分

  • 实用性:4分

  • 章节划分:5分

  • 结构布局:4分

  • 新颖与独特:7分

  • 情感共鸣:5分

  • 引人入胜:7分

  • 现实相关:5分

  • 沉浸感:3分

  • 事实准确性:7分

  • 文化贡献:8分


网站评分

  • 书籍多样性:9分

  • 书籍信息完全性:9分

  • 网站更新速度:5分

  • 使用便利性:9分

  • 书籍清晰度:9分

  • 书籍格式兼容性:5分

  • 是否包含广告:8分

  • 加载速度:5分

  • 安全性:3分

  • 稳定性:4分

  • 搜索功能:8分

  • 下载便捷性:7分


下载点评

  • 简单(650+)
  • 中评(143+)
  • mobi(196+)
  • 体验满分(80+)
  • 在线转格式(157+)
  • 博大精深(649+)
  • 无颠倒(532+)
  • azw3(60+)
  • 可以购买(517+)
  • 赚了(169+)

下载评价

  • 网友 曾***文: ( 2024-12-30 04:43:47 )

    五星好评哦

  • 网友 权***颜: ( 2024-12-30 01:41:29 )

    下载地址、格式选择、下载方式都还挺多的

  • 网友 汪***豪: ( 2024-12-27 03:32:16 )

    太棒了,我想要azw3的都有呀!!!

  • 网友 后***之: ( 2024-12-23 11:44:33 )

    强烈推荐!无论下载速度还是书籍内容都没话说 真的很良心!

  • 网友 宓***莉: ( 2025-01-03 06:29:55 )

    不仅速度快,而且内容无盗版痕迹。

  • 网友 相***儿: ( 2025-01-15 15:45:28 )

    你要的这里都能找到哦!!!

  • 网友 芮***枫: ( 2025-01-14 23:58:35 )

    有点意思的网站,赞一个真心好好好 哈哈

  • 网友 薛***玉: ( 2024-12-23 05:45:11 )

    就是我想要的!!!

  • 网友 谭***然: ( 2025-01-19 14:22:43 )

    如果不要钱就好了

  • 网友 家***丝: ( 2025-01-02 01:32:30 )

    好6666666


随机推荐