网站购物车   | 店铺购物车  
店铺平均得分:99.36 分,再接再厉!!!【查看全部评价】
评分 40分 50分 60分 70分 80分 90分 100分
数量 4 0 2 1 12 47 1600
本店铺共有 5 笔投诉记录,投诉率 0% ,低于平均投诉率 1% 【查看详细】
投诉类型
数量
比例
服务态度问题
1
20%
商品问题
1
20%
发货问题
3
60%
已解决
5
100%
店主称呼:有问题QQ咨询 鸿伟   联系方式:购买咨询请联系我  18873880909    地址:湖南省 长沙市 岳麓区 麓山南路
促销广告:【满49包邮库存准直接拍】有问题QQ咨询
图书分类
图书标签
店铺公告
各位书友您好,本店所售二手书籍,均为正版旧书,品质6-9成新,部分书籍的光盘或附件会有遗失的,还请谅解。

本店从即日起安徽,上海,浙江,江苏,天津,河北,山东,福建,江西,河南,湖北,广东,湖南,四川,山西,重庆,广西,陕西,辽宁,云南,贵州,吉林,黑龙江地区满49即可包邮,部分范围不可派送。

请各位亲们理解、支持,有问题积极和我们联系,谢谢合作!
欢迎光顾!
联系电话:
店铺介绍
鸿伟图书网,店内图书有十万余册,以大学教材为主,都来自各地高校,为正版二手书.因实体书店较忙,所有图书都采用批量上传,所以有些图书难免上架信息出错,也可能重复上传,造成库存数量不精确,欢迎广大书友前来咨询选购.正版低价是我的优势,诚信经营是我的经营之道.
交易帮助
第一步:选择图书放入购物车。
第二步:结算、填写收货地址。
第三步:担保付款或银行汇款。
第四步:卖家发货。
第五步:确认收货、评价。
作/译者:Mark Allen Weiss著 出版社:清华大学出版社
数据结构与算法分析C++描述(第2版影印版)
出版日期:2002年01月
ISBN:9787302057024 [十位:7302057028]
页数:588      
定价:¥54.00
店铺售价:¥16.20 (为您节省:¥37.80
店铺库存:2
注:您当前是在入驻店铺购买,非有路网直接销售。
正在处理购买信息,请稍候……
我要买: * 如何购买
** 关于库存、售价、配送费等具体信息建议直接联系店主咨询。
联系店主:购买咨询请联系我  18873880909
本店已缴纳保证金,请放心购买!【如何赔付?】
店主推荐图书:
买家对店铺的满意度评价:查看更多>>
评分
评价内容
评论人
订单图书
《数据结构与算法分析C++描述(第2版影印版)》内容提要:
此书是作者1996年出版“Algorithm,Data Structures,and Problem Solving with C++”的缩编本,原书正文807页,作者对内容包括算法重新作了编排,本书正文575页共分12章,其内容依次为C++简介;算法分析;表、栈与队列;树;散列 ;优先队列(堆);排序;并查集;图;算法设计技术;缓冲分析;**数据结构和实现。附录中给出类设计的模板。
本书内容基本符合目前《数据结构与算法》大纲的要求,比较适合当前的教学需要。内容编排上较为合理,篇幅较小,叙述清楚,适合于本科高年级和研究生使用。
《数据结构与算法分析C++描述(第2版影印版)》图书目录:
Chapter 1 Introduction

1.1 What's the Book About?
1.2 Mathematics Review
1.3 A Brief Introduction to Recursion
1.4 C++ Classes
1.5 C++ Details
1.6 Templates
1.7 Using Matrices

Chapter 2 Algorithm Analysis

2.1 Mathematical Background
2.2 Model
2.3 What to Analyze
2.4 Running Time Calculations

Chapter 3 Lists,Stacks,and Queues

3.1 Abstract Data Types(ADTS)
3.2 The List ADT
3.3 The Stack ADT
3.4 The Queue ADT

Chapter 4 Trees

4.1 Preliminaries
4.2 Binary Trees
4.3 The Search Tree ADT——Binary Search Trees
4.4 AVL Trees
4.5 Splay Trees
4.6 Tree Traversals(Revisited)
4.7 B-Trees

Chapter 5 Hashing

5.1 General Idea
5.2 Hash Function
5.3 Separate Chaining
5.4 Open Addressing
5.5 Rehashing
5.6 Extendible Hashing

Chapter 6 Priority Queues(Heaps)

6.1 Model
6.2 Simple Implementations
6.3 Binary Heap
6.4 Applicatins of Priority Queues
6.5 d-Heaps
6.6 Leftist Heaps
6.7 Skew Heaps
6.8 Binomial Queues

Chapter 7 Sorting

7.1 Preliminaries
7.2 Insertion Sort
7.3 A Lower Bound for Simple Sorting Algorithms
7.4 Shellsort
7.5 Heapsort
7.6 Mergesort
7.7 Quicksort
7.8 Indirect Soring
7.9 A Generl Lower Bound for Sorting
7.10 Bucket Sort
7.11 External Sorting

Chapter 8 The Disjoint Set ADT

8.1 Equivalence Relations
8.2 The Dynamic Equivalence Problem
8.3 Basic Data Structure
8.4 Smart Union Algorithms
8.5 Path Compression
8.6 Worst Case for Union-by-Rank and Path Compression
8.7 An Application

Chapter 9 Graph Algorithms

9.1 Definitions
9.2 Topological Sort
9.3 Shortest-Path Algorithms
9.4 Network Flow Problems
9.5 Minimum Spanning Tree
9.6 Applications of Depth-First Search
9.7 Introduction to NP-Completeness

Chapter 10 Algorithm Design Techniques

10.1 Greedy Algorithms
10.2 Divide and Conquer
10.3 Dynamic Programming
10.4 Randomized Algorithms
10.5 Backtracking Algorithms

Chapter 11 Amortized Analysis

11.1 An Unrelated Puzzle
11.2 Binomial Queues
11.3 Skew Heaps
11.4 Fibonacci Heaps
11.5 Splay Trees

Chapter 12 Advanced Data Structures and Implementation

12.1 Top-Down Splay Trees
12.2 Red-Black Trees
12.3 Daterministic Skip Lists
12.4 AA-Trees
12.5 Treaps
12.6 k-d Trees
12.7 Pairing Heaps

Appendix A The Standard Template Library

A.1 Introduction
A.2 Basic STL Concepts
A.3 Unordered Sequences:vector and list
A.4 Sets
A.5 Maps
A.6 Example:Generating a Concordance
A.7 Example:Shortest-Path Calculation
A.8 Other STL Features

Appendix B vector and string Classes

B.1 First-Class versus Second-Class Objects
B.2 vector Class
B.3 string Class

Index