上品|阅读|资源|新知|推荐适合阅读的优质图书|读书|新书|畅销书|书目|书单|书评|上品书屋上品|阅读|资源|新知|推荐适合阅读的优质图书|读书|新书|畅销书|书目|书单|书评|上品书屋上品阅读|新知
  • 首页
  • 资源
  • 书评
  • 专题
  • 图书分类
    • 智能 | 信通 | 网联
      • 未来科技
      • 人工智能
      • 互联网
      • 编程
      • 交互设计
      • 通信
      • 神经网络
      • 科普新知
      • 算法
    • 经管 | 创业 | 理财
      • 创业
      • 投资
      • 理财
      • 管理
      • 经济学
      • 营销
      • 金融
    • 社科 | 文史 | 政教
      • 历史
      • 哲学
      • 传记
      • 心理学
      • 社会学
      • 思想
      • 政治
      • 法律
      • 宗教
      • 军事
      • 考古
    • 文艺 | 漫画 | 推理
      • 经典名著
      • 艺术
      • 国学
      • 推理
      • 小说
      • 随笔
      • 文化
      • 文学
      • 漫画
      • 诗歌
    • 潮流 | 职场 | 居家
      • 时尚
      • 健康
      • 美食
      • 家居
      • 灵修
      • 职场
      • 生活
      • 旅行
    • 少儿 | 教育 | 励志
      • 励志
      • 儿童文学
      • 教育
      • 童话
      • 绘本
  • 
 
当前位置:上品阅读|新知  新书  信息科技  算法  正文

本站免费ChatGPT,欢迎测试:https://ai.sph.net/

Advanced Data Structures

2023-01-01 分类:算法 评论(0)
目 录
  1. 内容简介 ······
  2. 目录 ······
  3. 评论 ······

0
(0)

Advanced Data Structures

作者:PeterBrass

出版社:CambridgeUniversityPress

出版年:2008-9-8

页数:472

定价:USD80.00

装帧:Hardcover

ISBN:9780521880374

内容简介 ······

Product Description

Advanced Data Structures presents a comprehensive look at the ideas, analysis, and implementation details of data structures as a specialized topic in applied algorithms. Data structures are how data is stored within a computer, and how one can go about searching for data within. This text examines efficient ways to search and update sets of numbers, intervals, or strings by various data structures, such as search trees, structures for sets of intervals or piece-wise constant functions, orthogonal range search structures, heaps, union-find structures, dynamization and persistence of structures, structures for strings, and hash tables. This is the first volume to show data structures as a crucial algorithmic topic, rather than relegating them as trivial material used to illustrate object-oriented programming methodology, filling a void in the ever-increasing computer science market. Numerous code examples in C and more than 500 references make Advanced Data Structures an indispensable text. topic. Numerous code examples in C and more than 500 references make Advanced Data Structures an indispensable text.

Book Description

Advanced Data Structures presents a comprehensive look at the implementation and analysis of data structures as a specialized topic in applied algorithms. This graduate-level textbook examines efficient ways to realize query operations and the history of various structures as they are related to basic concepts of data storage.

目录 ······

1 Elementary Structures 1

1.1 Stack 1

1.2 Queue 8

1.3 Double-Ended Queue 16

1.4 Dynamical Allocation of Nodes 16

1.5 Shadow Copies of Array-Based Structures 18

2 Search Trees 23

2.1 Two Models of Search Trees 23

2.2 General Properties and Transformations 26

2.3 Height of a Search Tree 29

2.4 Basic Find, Insert, and Delete 31

2.5 Returning fromLeaf to Root 35

2.6 Dealing with Nonunique Keys 37

2.7 Queries for the Keys in an Interval 38

2.8 Building Optimal Search Trees 40

2.9 Converting Trees into Lists 47

2.10 Removing a Tree 48

3 Balanced Search Trees 50

3.1 Height-Balanced Trees 50

3.2 Weight-Balanced Trees 61

3.3 (a, b)- and B-Trees 72

3.4 Red-Black Trees and Trees of Almost Optimal Height 89

3.5 Top-Down Rebalancing for Red-Black Trees 101

3.6 Trees with Constant Update Time at a Known Location 111

3.7 Finger Trees and Level Linking 114

vii

3.8 Trees with Partial Rebuilding: Amortized Analysis 119

3.9 Splay Trees: Adaptive Data Structures 122

3.10 Skip Lists: Randomized Data Structures 135

3.11 Joining and Splitting Balanced Search Trees 143

4 Tree Structures for Sets of Intervals 148

4.1 Interval Trees 148

4.2 Segment Trees 154

4.3 Trees for the Union of Intervals 162

4.4 Trees for Sums of Weighted Intervals 169

4.5 Trees for Interval-Restricted Maximum Sum Queries 174

4.6 Orthogonal Range Trees 182

4.7 Higher-Dimensional Segment Trees 196

4.8 Other Systems of Building Blocks 199

4.9 Range-Counting and the Semigroup Model 202

4.10 kd-Trees and Related Structures 204

5 Heaps 209

5.1 Balanced Search Trees as Heaps 210

5.2 Array-Based Heaps 214

5.3 Heap-Ordered Trees and Half-Ordered Trees 221

5.4 Leftist Heaps 227

5.5 Skew Heaps 235

5.6 Binomial Heaps 239

5.7 Changing Keys in Heaps 248

5.8 Fibonacci Heaps 250

5.9 Heaps of Optimal Complexity 262

5.10 Double-Ended Heap Structures and Multidimensional

Heaps 267

5.11 Heap-Related Structures with Constant-Time Updates 271

6 Union-Find and Related Structures 278

6.1 Union-Find: Merging Classes of a Partition 279

6.2 Union-Find with Copies and Dynamic Segment Trees 293

6.3 List Splitting 303

6.4 Problems on Root-Directed Trees 306

6.5 Maintaining a Linear Order 317

7 Data Structure Transformations 321

7.1 Making Structures Dynamic 321

7.2 Making Structures Persistent 330

8 Data Structures for Strings 335

8.1 Tries and Compressed Tries 336

8.2 Dictionaries Allowing Errors in Queries 356

8.3 Suffix Trees 360

8.4 Suffix Arrays 367

9 Hash Tables 374

9.1 Basic Hash Tables and Collision Resolution 374

9.2 Universal Families of Hash Functions 380

9.3 Perfect Hash Functions 391

9.4 Hash Trees 397

9.5 Extendible Hashing 398

9.6 Membership Testers and Bloom Filters 402

10 Appendix 406

10.1 The Pointer Machine and Alternative Computation

Models 406

10.2 External Memory Models and Cache-Oblivious

Algorithms 408

10.3 Naming of Data Structures 409

10.4 Solving Linear Recurrences 410

10.5 Very Slowly Growing Functions 412

11 References 415

Author Index 441

Subject Index 455

评论 ······

读论文读的少的你们就放弃吧… hahaha

so so

一个误操作把我的评论文字全删掉了,这个货豆瓣要负责,书10分+5分,豆瓣10分-5分

好难,存住,以后接着看

  • 下载电子版:下载地址
  • 购买纸质版:京东商城
  • 购买纸质版:当当网

点击星号评分!

平均分 0 / 5. 投票数: 0

还没有投票!请为他投一票。

分享到
上一篇
维特根斯坦《哲学研究》注解
下一篇
人论三题 : 新编本

评论 抢沙发

取消

推荐阅读

  • 数学之美(第三版)-上品阅读|新知数学之美(第三版)
  • 机器学习实战(原书第2版)


    
       : 基于Scikit-Learn、Keras和TensorFlow-上品阅读|新知机器学习实战(原书第2版) : 基于Scikit-Learn、Keras和TensorFlow
  • 深度学习推荐系统-上品阅读|新知深度学习推荐系统
  • 百面深度学习


    
       : 算法工程师带你去面试-上品阅读|新知百面深度学习 : 算法工程师带你去面试
  • 深度学习高手笔记


    
       : 卷1:基础算法-上品阅读|新知深度学习高手笔记 : 卷1:基础算法
  • 经典算法的起源-上品阅读|新知经典算法的起源
  • 神机妙算


    
       : 一本关于算法的闲书-上品阅读|新知神机妙算 : 一本关于算法的闲书
  • 真实世界的算法


    
       : 初学者指南-上品阅读|新知真实世界的算法 : 初学者指南

热点

  • 如何在国内申请与使用新必应(New Bing)+ChatGPT:教程,攻略,常见问题-上品阅读|新知如何在国内申请与使用新必应(New Bing)+ChatGPT:教程,攻略,常见问题2023-03-20评论(44)
  • ChatGPT国内如何注册使用教程:如何使用接码平台+如何注册+使用技巧+高级应用-上品阅读|新知ChatGPT国内如何注册使用教程:如何使用接码平台+如何注册+使用技巧+高级应用2023-02-18评论(3)
  • 微软集成ChatGPT新APP上线:Bing、Edge、Skype,查找资料和聊天更智能,最新下载-上品阅读|新知微软集成ChatGPT新APP上线:Bing、Edge、Skype,查找资料和聊天更智能,最新下载2023-02-23评论(0)
  • 复旦发布中国版ChatGPT:MOSS服务器一夜挤爆-上品阅读|新知复旦发布中国版ChatGPT:MOSS服务器一夜挤爆2023-02-22评论(0)
  • 体验新必应的三种聊天模式:平衡、精确、有创造力;与ChatGPT对比哪个更强;在专业问题上表现如何-上品阅读|新知体验新必应的三种聊天模式:平衡、精确、有创造力;与ChatGPT对比哪个更强;在专业问题上表现如何2023-03-03评论(0)
  • 海淘、海外收款必备 | 派安盈Payoneer个人和公司账户注册、使用、技巧、答疑-上品阅读|新知海淘、海外收款必备 | 派安盈Payoneer个人和公司账户注册、使用、技巧、答疑2023-03-12评论(0)

推荐

  • 如何在Newegg新蛋美国官网注册购物:海淘教程攻略-上品阅读|新知如何在Newegg新蛋美国官网注册购物:海淘教程攻略2023-03-14
  • 如何在Original Penguin美国官网注册、购物:海淘教程攻略-上品阅读|新知如何在Original Penguin美国官网注册、购物:海淘教程攻略2023-03-14
  • 如何在Nissen日本官网注册购物:海淘教程攻略-上品阅读|新知如何在Nissen日本官网注册购物:海淘教程攻略2023-03-14
  • 如何在Nautica诺帝卡美国官网注册购物:海淘教程攻略-上品阅读|新知如何在Nautica诺帝卡美国官网注册购物:海淘教程攻略2023-03-14
  • 如何在Nasty Gal坏女孩美国官网注册、购物:海淘教程攻略-上品阅读|新知如何在Nasty Gal坏女孩美国官网注册、购物:海淘教程攻略2023-03-13
  • 如何在Origins悦木之源英国官网注册、购物:海淘教程攻略-上品阅读|新知如何在Origins悦木之源英国官网注册、购物:海淘教程攻略2023-03-13

© 1998-2023   上品阅读|新知   ★ 网站地图 | 标签云 | 隐私政策 | 关于 | 权利声明 ★ 现当代作家 | 法学家 | 互联网&人工智能 ★ 出版社大全 | 时尚奢品 | 热门话题

  • 回顶部