Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2025


Data Structures and Algorithm Analysis in C (2nd Edition)

简体网页||繁体网页
[美] Mark Allen Weiss 作者
Addison Wesley
译者
1996-09-19 出版日期
600 页数
USD 95.00 价格
Paperback
丛书系列
9780201498400 图书编码

Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 图书标签: 数据结构  Algorithm  算法  C  计算机  DataStructure  programming  编程   


喜欢 Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 的读者还喜欢




下载链接1
下载链接2
下载链接3
    

想要找书就要到 图书目录大全
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

发表于2025-04-13


Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 epub 下载 mobi 下载 pdf 下载 txt 下载 2025

Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 epub 下载 mobi 下载 pdf 下载 txt 下载 2025

Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2025



Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 用户评价

评分

酷毙了!!!20还是15买的??

评分

4.5分,非常经典,本书清晰明了但不十分简单,入门上手很适合,算法分析部分没怎么用力看... 但讲的比较直观。所有的ADT已经发明好了,想重新制作的时候脑袋里就是书里的东西。真的很棒。不过有些章节讲的有点不知所云,算法时间复杂度的分析有点潦草... 以及不忍吐槽Muti-way那里,个人觉得写的有点含糊…… 不过问题都能从csdn以及stack exchange解决。本书配合source code使用效率极佳。课后习题不错,但只跳着写了。之前刚刚开学配合Pointer on C刷很有感觉。可惜因申请季时间不够我也只维持一个月。

评分

给你一个数据结构的实现,再给你几个例子,好了,做题。hhhh 总的来说是一本不错的书,源代码必须好评(虽然C语言的特性决定了其算法实现必须额外注意底层,会造成干扰)。目前基本的数据结构、排序算法和遍历算法都过了一遍,先结合源代码把这些东西上机实现一遍,再用笔手写一遍再上手贪心算法和动归吧。

评分

写得简单直接明了,也简单,至少前三章这样. 看起来感觉是MIT的<Introduction to Algorithm> 的简化版

评分

酷毙了!!!20还是15买的??

Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 著者简介

Mark Allen Weiss,1987年在普林斯顿大学获得计算机科学博士学位,师从Robert Sedgewick (师从Knuth),现任美国佛罗里达国际大学计算与信息科学学院教授。他曾经担任全美AP(Advanced Placement)考试计算机学科委员会的主席(2000-2004)。他的主要研究方向是数据结构、算法和教育学。


Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 图书目录


Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 pdf 下载 txt下载 epub 下载 mobi 在线电子书下载

Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 图书描述

Mark Allen Weiss' successful book provides a modern approach to algorithms and data structures using the C programming language. The book's conceptual presentation focuses on ADTs and the analysis of algorithms for efficiency, with a particular concentration on performance and running time. The second edition contains a new chapter that examines advanced data structures such as red black trees, top down splay trees, treaps, k-d trees, and pairing heaps among others. All code examples now conform to ANSI C and coverage of the formal proofs underpinning several key data structures has been strengthened.

Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 下载 mobi epub pdf txt 在线电子书下载

想要找书就要到 图书目录大全
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 读后感

评分

这本书买了很多年,搬了这么多次工位,一直在办公室常备的书(虽然已经很少翻看). 里面使用的代码,不是所谓的伪代码,而是正经可以运行的C代码,所以新人如果能照着做一遍下来,收获应该不小. 我的一个朋友,很多年前也是读这本书写了一些笔记: http://www.luocong.com/dsaanotes/ ...  

评分

8.28------- 其实CLRS的书在论证方面也不能算太好,例如霍夫曼编码,缺点说明见此文:http://mindhacks.cn/2011/07/10/the-importance-of-knowing-why-part3/ 但是,仍旧比Weiss的走脑。现在觉得,如果是以求甚解的心态去学算法,书本真的不能选薄的。。。因为这种书只能用来当...  

评分

这种程度的书确实很少能见到了。 它不在简单的地方无谓的浪费笔墨,恰到好处的把初学者带入算法和数据结构的世界。 它基本上涉及了数据结构基础的“方方面面”。很难想象这书的厚度,居然能讲这么多内容(你看看算法导论有多厚就知道我在说什么了)。 它在内容上并不乏深度...  

评分

英文原版 3.4.2节: Since there are a few options for implementation, it is probably worth a comment or two in the code, if you don't use the size field. 该书的中文翻译是: 由于实现的方法有多种选择,因此如果你不使用表示大小的域,那就很有可能有必要进行一些讨...  

评分

本书作者 Mark Allen Weiss 还写过 C 语言描述 和 Java 语言描述 版本的数据结构和算法分析教程。 另外,图灵出版社的同系列还有 Michael McMillan 写的 C# 语言描述 版本的算法书。 C++ 熟练者可忽略讲述 C++ 特性的第 1 章,如果把这些关于 C++ 特性的篇幅去掉,本书会精益不...  

类似图书 点击查看全场最低价

Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2025


分享链接





Data Structures and Algorithm Analysis in C (2nd Edition) 在线电子书 相关图书




本站所有内容均为互联网搜索引擎提供的公开搜索信息,本站不存储任何数据与内容,任何内容与数据均与本站无关,如有需要请联系相关搜索引擎包括但不限于百度google,bing,sogou

友情链接

© 2025 book.wenda123.org All Rights Reserved. 图书目录大全 版权所有