分享
 
 
 

数据结构(C语言版)(大学计算机教育国外著名教材系列(影印版))(Data Structures Using C)

数据结构(C语言版)(大学计算机教育国外著名教材系列(影印版))(Data Structures Using C)  点此进入淘宝搜索页搜索
  特别声明:本站仅为商品信息简介,并不出售商品,您可点击文中链接进入淘宝网搜索页搜索该商品,有任何问题请与具体淘宝商家联系。
  參考價格: 点此进入淘宝搜索页搜索
  分類: 图书,教材教辅与参考书,大学,计算机专业,
  品牌: 克里斯哈拉莫斯(R Krishnamoorthy)

基本信息·出版社:清华大学出版社

·页码:604 页

·出版日期:2009年09月

·ISBN:9787302207313

·条形码:9787302207313

·包装版本:第1版

·装帧:平装

·开本:32

·正文语种:英语

·丛书名:大学计算机教育国外著名教材系列(影印版)

·外文书名:Data Structures Using C

产品信息有问题吗?请帮我们更新产品信息。

内容简介《数据结构(C语言版)》内容简介:有关数据结构的教材很多,而《数据结构(C语言版)》是一本非常有特点的教材,每章先简要介绍本章的主要内容,给出基本的知识背景,然后使用大量的示例、表格、插图和流程图来阐述各种概念和知识,方便了读者的理解,同时给出了大量的源代码,帮助读者实现实际的数据结构,每章后面提供了复习题、多项选择题和编程练习题,有助于读者巩固所学知识的理解,是一本非常理想的数据结构教材。

每章先简要介绍本章的主要内容,给出基本的知识背景。

使用了大量的已求解示例、表格、插图和流程图,大大方便了读者的理解。

给出了大量的源代码,帮助读者实现实际的数据结构,从而提供程序的可靠性。

每章后面提供了复习题、多项选择题和编程练习题,有助于巩固所学知识的理解。

通过概念和编程示例来阐述每种数据结构的应用。

作者简介R Krishnamoorthy, PhD is Professor of Information Technology, BharathidasanInstitute of Technology, Bharathidasan University, Trichy. Dr R Krishnamoorthyreceived his M. Tech Degree in Computer Science and Engineering from IndianInstitute of Technology, Kanpur and PhD degree in Computer Science and Engineer-ing from Indian Institute of Technology, Kharagpur, with specialization in ComputerVision and Image Processing. He has 24 years of teaching experience. He is theauthor of three books, and forty-four technical papers published in National andInternational Conferences and International Journals. He has produced five PhDs. Heis member of CSI, ISTE, IEEE and ACM. His areas of interest include network secu-rity, image processing and software testing.

G Indirani Kumaravel is Senior Lecturer in Computer Science and Engineering,Annamaiai University, Chidambaram. She received her M E degree in ComputerScience and Engineering from Annamalai University. Indirani has 12 years of teach-ing experience. She is a member of CSI. Her areas of interest include Speech andImage Processing.

编辑推荐《数据结构(C语言版)》:大学计算机教育国外著名教材系列(影印版)

目录

Preface ix

1. Data Structures-An Overview 1

1.1 Introduction 1

1.2 Data Types 3

1.3 Program Modules 4

1.4 Control Structures 7

1.5 Looping Structures 13

1.6 Arrays 16

1.7 Structures 24

1.8 Pointers 28

1.9 Recursion 31

Review Yourself 35

Multiple Choice Questions 36

Programming Exercises 38

2. Strings and Character Manipulation 39

2.1 Introduction 39

2.2 Primitive Functions or Operations on Strings 39

2.3 Representation of Strings 41

2.4 String Manipulation in C 42

2.5 String Manipulation Applications 58

Review Yourself 66

Multiple Choice Questions 67

Programming Exercises 67

3. Stacks 68

3.1 Introduction 68

3.2 Definition 68

3.3 Primitive Operations 69

3.4 An abstract Data Type (ADT) 70

3.5 Implementation 70

3.6 Applications of Stack 76

Review Yourself 99

Multiple Choice Questions 99

Programming Exercises 101

4. Queues 102

4.1 Introduction 102

4.2 Definition 102

4.3 Operations on a Queue 103

4.4 ADT for Queues 104

4.5 Representation of Queue 104

4.6 Various Other Queue Structures 112

4.7 Applications 152

Review Yourself 165

Multiple Choice Questions 165

Programming Exercises 165

5. Linked Lists 168

5.1 Introduction 168

5.2 Definition 168

5.3 ADT for Linked List 169

5.4 Singly Linked List 169

5.5 Doubly Linked List 184

5.6 Circular Linked Lists 198

5.7 Sparse Matrices 210

5.8 Applications 232

5.9 Additional Programs 254

Review Yourself 272

Multiple Choice Questions 272

Programming Exercises 273

6. Trees 274

6.1 Introduction 274

6.2 Definition 274

6.3 Terminologies Used 274

6.4 Binary Tree 276

6.5 Threaded Binary Trees296

6.6 Heap Trees 317

6.7 Deaps 327

6.8 Huffman Algorithm 337

6.9 Decision Trees 344

6.10 Game Tree 351

6.11 Applications 358

Review Yourself 362

Multiple Choice Questions 362

Programming Exercises 363

7. Graphs 364

7.1 Introduction 364

7.2 Definition 365

7.3 Terminologies Used 366

7.4 Representation of Graphs 369

7.5 ADT for Graphs 372

7.6 Extra Information that can be Retrieved from the Adjacency Matrix of the Graph 373

7.7 Operations on Graphs 374

7.8 Applications 410

7.9 Unweighted Shortest Path for Graphs Using Adjacency Matrix 439

7.10 Introduction to NP-completeness 444

Review Yourself 445

Multiple Choice Questions 445

Programming Exercises 446

8. Sorting 447

8.1 Introduction 447

8.2 Definition 448

8.3 Internal Sorting 448

8.4 External Sorting 474

Review Yourself 483

Multiple Choice Questions 483

Programming Exercises 484

9. Searching 485

9.1 Introduction 485

9.2 Quantity Dependent Search Techniques 485

9.3 Density Dependent Search Techniques 490

9.4 Indexed Search Techniques 509

Review Yourself 512

Multiple Choice Questions 512

Programming Exercises 513

10. Search Trees 514

10.1 Introduction 514

10.2 Binary Search Tree (BST) 514

10.3 AVL Trees 530

10.4 B - Trees 544

10.5 B+ - Trees 562

10.6 Tries 572

Review Yourself 587

Multiple Choice Questions 587

Programming Exercises 588

11. File Structures 589

11.1 Files 589

Review Yourself 599

Multiple Choice Questions 600

Programming Exercises 600

Index 602

……[看更多目录]

序言C programming language offers several facilities to group data together in conve-nient packages, or data structures. With the emergence of C as the most popularlanguage of implementation, it has been used in this book to extensively examinedata structures.

This Book is Meant for...

Keeping in mind the level of beginners, the book is written without any prerequisites.It is an ideal textbook for students of various courses in Computer Science at thediploma, polytechnic, undergraduate and postgraduate levels, and also for newprogrammers who wish to know about the usage of different data structures in theirproject.

Student Friend ly Approach...

Students will gain a good appreciation of the subject as this book has a clear displayof syntax and abundant programming examples. To simplify concepts, the data struc-tures are implemented using C language, in a step-by-step manner.

文摘插图:

数据结构(C语言版)(大学计算机教育国外著名教材系列(影印版))(Data Structures Using C)

 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
>>返回首頁<<
 
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有