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

大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
分享
扫描下方二维码分享到微信
打开微信,点击右上角”+“,
使用”扫一扫“即可将网页分享到朋友圈。
作者: [印] (Krishnamoorthy R.)
2009-09
版次: 1
ISBN: 9787302207313
定价: 39.00
装帧: 平装
开本: 16开
纸张: 胶版纸
页数: 604页
正文语种: 简体中文,英语
36人买过
  •   有关数据结构的教材很多,而《数据结构(C语言版)》是一本非常有特点的教材,每章先简要介绍本章的主要内容,给出基本的知识背景,然后使用大量的示例、表格、插图和流程图来阐述各种概念和知识,方便了读者的理解,同时给出了大量的源代码,帮助读者实现实际的数据结构,每章后面提供了复习题、多项选择题和编程练习题,有助于读者巩固所学知识的理解,是一本非常理想的数据结构教材。
      每章先简要介绍本章的主要内容,给出基本的知识背景。
      使用了大量的已求解示例、表格、插图和流程图,大大方便了读者的理解。
      给出了大量的源代码,帮助读者实现实际的数据结构,从而提供程序的可靠性。
      每章后面提供了复习题、多项选择题和编程练习题,有助于巩固所学知识的理解。
      通过概念和编程示例来阐述每种数据结构的应用。   RKrishnamoorthy,PhDisProfessorofInformationTechnology,BharathidasanInstituteofTechnology,BharathidasanUniversity,Trichy.DrRKrishnamoorthyreceivedhisM.TechDegreeinComputerScienceandEngineeringfromIndianInstituteofTechnology,KanpurandPhDdegreeinComputerScienceandEngineer-ingfromIndianInstituteofTechnology,Kharagpur,withspecializationinComputerVisionandImageProcessing.Hehas24yearsofteachingexperience.Heistheauthorofthreebooks,andforty-fourtechnicalpaperspublishedinNationalandInternationalConferencesandInternationalJournals.HehasproducedfivePhDs.HeismemberofCSI,ISTE,IEEEandACM.Hisareasofinterestincludenetworksecu-rity,imageprocessingandsoftwaretesting.
      GIndiraniKumaravelisSeniorLecturerinComputerScienceandEngineering,AnnamaiaiUniversity,Chidambaram.ShereceivedherMEdegreeinComputerScienceandEngineeringfromAnnamalaiUniversity.Indiranihas12yearsofteach-ingexperience.SheisamemberofCSI.HerareasofinterestincludeSpeechandImageProcessing. Prefaceix
    1.DataStructures-AnOverview1
    1.1Introduction1
    1.2DataTypes3
    1.3ProgramModules4
    1.4ControlStructures7
    1.5LoopingStructures13
    1.6Arrays16
    1.7Structures24
    1.8Pointers28
    1.9Recursion31
    ReviewYourself35
    MultipleChoiceQuestions36
    ProgrammingExercises38

    2.StringsandCharacterManipulation39
    2.1Introduction39
    2.2PrimitiveFunctionsorOperationsonStrings39
    2.3RepresentationofStrings41
    2.4StringManipulationinC42
    2.5StringManipulationApplications58
    ReviewYourself66
    MultipleChoiceQuestions67
    ProgrammingExercises67

    3.Stacks68
    3.1Introduction68
    3.2Definition68
    3.3PrimitiveOperations69
    3.4AnabstractDataType(ADT)70
    3.5Implementation70
    3.6ApplicationsofStack76
    ReviewYourself99
    MultipleChoiceQuestions99
    ProgrammingExercises101

    4.Queues102
    4.1Introduction102
    4.2Definition102
    4.3OperationsonaQueue103
    4.4ADTforQueues104
    4.5RepresentationofQueue104
    4.6VariousOtherQueueStructures112
    4.7Applications152
    ReviewYourself165
    MultipleChoiceQuestions165
    ProgrammingExercises165

    5.LinkedLists168
    5.1Introduction168
    5.2Definition168
    5.3ADTforLinkedList169
    5.4SinglyLinkedList169
    5.5DoublyLinkedList184
    5.6CircularLinkedLists198
    5.7SparseMatrices210
    5.8Applications232
    5.9AdditionalPrograms254
    ReviewYourself272
    MultipleChoiceQuestions272
    ProgrammingExercises273

    6.Trees274
    6.1Introduction274
    6.2Definition274
    6.3TerminologiesUsed274
    6.4BinaryTree276
    6.5ThreadedBinaryTrees296
    6.6HeapTrees317
    6.7Deaps327
    6.8HuffmanAlgorithm337
    6.9DecisionTrees344
    6.10GameTree351
    6.11Applications358
    ReviewYourself362
    MultipleChoiceQuestions362
    ProgrammingExercises363

    7.Graphs364
    7.1Introduction364
    7.2Definition365
    7.3TerminologiesUsed366
    7.4RepresentationofGraphs369
    7.5ADTforGraphs372
    7.6ExtraInformationthatcanbeRetrievedfromtheAdjacencyMatrixoftheGraph373
    7.7OperationsonGraphs374
    7.8Applications410
    7.9UnweightedShortestPathforGraphsUsingAdjacencyMatrix439
    7.10IntroductiontoNP-completeness444
    ReviewYourself445
    MultipleChoiceQuestions445
    ProgrammingExercises446

    8.Sorting447
    8.1Introduction447
    8.2Definition448
    8.3InternalSorting448
    8.4ExternalSorting474
    ReviewYourself483
    MultipleChoiceQuestions483
    ProgrammingExercises484

    9.Searching485
    9.1Introduction485
    9.2QuantityDependentSearchTechniques485
    9.3DensityDependentSearchTechniques490
    9.4IndexedSearchTechniques509
    ReviewYourself512
    MultipleChoiceQuestions512
    ProgrammingExercises513

    10.SearchTrees514
    10.1Introduction514
    10.2BinarySearchTree(BST)514
    10.3AVLTrees530
    10.4B-Trees544
    10.5B+-Trees562
    10.6Tries572
    ReviewYourself587
    MultipleChoiceQuestions587
    ProgrammingExercises588

    11.FileStructures589
    11.1Files589
    ReviewYourself599
    MultipleChoiceQuestions600
    ProgrammingExercises600
    Index602
  • 内容简介:
      有关数据结构的教材很多,而《数据结构(C语言版)》是一本非常有特点的教材,每章先简要介绍本章的主要内容,给出基本的知识背景,然后使用大量的示例、表格、插图和流程图来阐述各种概念和知识,方便了读者的理解,同时给出了大量的源代码,帮助读者实现实际的数据结构,每章后面提供了复习题、多项选择题和编程练习题,有助于读者巩固所学知识的理解,是一本非常理想的数据结构教材。
      每章先简要介绍本章的主要内容,给出基本的知识背景。
      使用了大量的已求解示例、表格、插图和流程图,大大方便了读者的理解。
      给出了大量的源代码,帮助读者实现实际的数据结构,从而提供程序的可靠性。
      每章后面提供了复习题、多项选择题和编程练习题,有助于巩固所学知识的理解。
      通过概念和编程示例来阐述每种数据结构的应用。
  • 作者简介:
      RKrishnamoorthy,PhDisProfessorofInformationTechnology,BharathidasanInstituteofTechnology,BharathidasanUniversity,Trichy.DrRKrishnamoorthyreceivedhisM.TechDegreeinComputerScienceandEngineeringfromIndianInstituteofTechnology,KanpurandPhDdegreeinComputerScienceandEngineer-ingfromIndianInstituteofTechnology,Kharagpur,withspecializationinComputerVisionandImageProcessing.Hehas24yearsofteachingexperience.Heistheauthorofthreebooks,andforty-fourtechnicalpaperspublishedinNationalandInternationalConferencesandInternationalJournals.HehasproducedfivePhDs.HeismemberofCSI,ISTE,IEEEandACM.Hisareasofinterestincludenetworksecu-rity,imageprocessingandsoftwaretesting.
      GIndiraniKumaravelisSeniorLecturerinComputerScienceandEngineering,AnnamaiaiUniversity,Chidambaram.ShereceivedherMEdegreeinComputerScienceandEngineeringfromAnnamalaiUniversity.Indiranihas12yearsofteach-ingexperience.SheisamemberofCSI.HerareasofinterestincludeSpeechandImageProcessing.
  • 目录:
    Prefaceix
    1.DataStructures-AnOverview1
    1.1Introduction1
    1.2DataTypes3
    1.3ProgramModules4
    1.4ControlStructures7
    1.5LoopingStructures13
    1.6Arrays16
    1.7Structures24
    1.8Pointers28
    1.9Recursion31
    ReviewYourself35
    MultipleChoiceQuestions36
    ProgrammingExercises38

    2.StringsandCharacterManipulation39
    2.1Introduction39
    2.2PrimitiveFunctionsorOperationsonStrings39
    2.3RepresentationofStrings41
    2.4StringManipulationinC42
    2.5StringManipulationApplications58
    ReviewYourself66
    MultipleChoiceQuestions67
    ProgrammingExercises67

    3.Stacks68
    3.1Introduction68
    3.2Definition68
    3.3PrimitiveOperations69
    3.4AnabstractDataType(ADT)70
    3.5Implementation70
    3.6ApplicationsofStack76
    ReviewYourself99
    MultipleChoiceQuestions99
    ProgrammingExercises101

    4.Queues102
    4.1Introduction102
    4.2Definition102
    4.3OperationsonaQueue103
    4.4ADTforQueues104
    4.5RepresentationofQueue104
    4.6VariousOtherQueueStructures112
    4.7Applications152
    ReviewYourself165
    MultipleChoiceQuestions165
    ProgrammingExercises165

    5.LinkedLists168
    5.1Introduction168
    5.2Definition168
    5.3ADTforLinkedList169
    5.4SinglyLinkedList169
    5.5DoublyLinkedList184
    5.6CircularLinkedLists198
    5.7SparseMatrices210
    5.8Applications232
    5.9AdditionalPrograms254
    ReviewYourself272
    MultipleChoiceQuestions272
    ProgrammingExercises273

    6.Trees274
    6.1Introduction274
    6.2Definition274
    6.3TerminologiesUsed274
    6.4BinaryTree276
    6.5ThreadedBinaryTrees296
    6.6HeapTrees317
    6.7Deaps327
    6.8HuffmanAlgorithm337
    6.9DecisionTrees344
    6.10GameTree351
    6.11Applications358
    ReviewYourself362
    MultipleChoiceQuestions362
    ProgrammingExercises363

    7.Graphs364
    7.1Introduction364
    7.2Definition365
    7.3TerminologiesUsed366
    7.4RepresentationofGraphs369
    7.5ADTforGraphs372
    7.6ExtraInformationthatcanbeRetrievedfromtheAdjacencyMatrixoftheGraph373
    7.7OperationsonGraphs374
    7.8Applications410
    7.9UnweightedShortestPathforGraphsUsingAdjacencyMatrix439
    7.10IntroductiontoNP-completeness444
    ReviewYourself445
    MultipleChoiceQuestions445
    ProgrammingExercises446

    8.Sorting447
    8.1Introduction447
    8.2Definition448
    8.3InternalSorting448
    8.4ExternalSorting474
    ReviewYourself483
    MultipleChoiceQuestions483
    ProgrammingExercises484

    9.Searching485
    9.1Introduction485
    9.2QuantityDependentSearchTechniques485
    9.3DensityDependentSearchTechniques490
    9.4IndexedSearchTechniques509
    ReviewYourself512
    MultipleChoiceQuestions512
    ProgrammingExercises513

    10.SearchTrees514
    10.1Introduction514
    10.2BinarySearchTree(BST)514
    10.3AVLTrees530
    10.4B-Trees544
    10.5B+-Trees562
    10.6Tries572
    ReviewYourself587
    MultipleChoiceQuestions587
    ProgrammingExercises588

    11.FileStructures589
    11.1Files589
    ReviewYourself599
    MultipleChoiceQuestions600
    ProgrammingExercises600
    Index602
查看详情
系列丛书 / 更多
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
人工智能:一种现代的方法(第3版)(影印版)
[美]拉塞尔(Stuart J.Russell)、[美]诺维格(Peter Norvig) 著
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
大学计算机教育国外著名教材系列:计算机网络(第4版 修订版 影印版)
Tanenbaum Andrew S 著
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
大学计算机教育国外著名教材系列:标准C程序设计(第5版)(影印版)
[印]巴拉古路萨(E Balagurusamy) 著
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
大学计算机教育国外著名教材系列:软件工程基础(第3版)
[印]马尔(Rajib Mall) 著
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
大学计算机教育国外著名教材系列:影印 软件工程实践者之路(第5版)
RogerS.Pressman 著
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
面向对象软件工程(使用UML、模式与Java)(第3版)(影印版)
[美]布鲁格 著
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
Java语言艺术与科学:计算机科学导论
[美]罗伯特 著
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
大学计算机教育国外著名教材系列:Java面向对象程序设计(第2版)(影印版)
[美]阿诺(Arnow,D.M.)、[美]德克斯特(Dexter,S.)、[美]卫斯(Weiss) 著
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
大学计算机教育国外著名教材系列:计算机安全导论(影印版)
[美]古德里奇(Machael T.Goodrich)、[美]塔玛萨(Roberto Tamassia) 著
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
密码学与网络安全(第2版)
[印]卡哈特 著
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
大学计算机教育国外著名教材系列:系统分析与设计基础(第5版)(影印版)
[美]瓦拉西切(Joseph Valacich)、[美]乔治(Joey George)、[美]霍弗(Jeff A.Hoffer) 著
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
程序设计基础(第3版)
[美]德雷克 著;[美]维尼特
您可能感兴趣 / 更多
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
诺奖作家给孩子的阅读课·品格修养(3-9年级,莫言余华的文学启蒙,垫高阅读起点,提升作文能力)
[印]泰戈尔等
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
Python数据分析(第3版)
[印]阿维纳什·纳夫拉尼(Avinash Navlani)
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
PyTorch计算机视觉实战:目标检测、图像处理与深度学习
[印]V·基肖尔·阿耶德瓦拉 (印)耶什万斯·雷迪
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
超声引导下区域麻醉实用指南
[印]阿鲁南苏·查克拉博蒂
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
Python机器学习实战:基于Scikit-learn与PyTorch的神经网络解决方案
[印]阿什温·帕扬卡 (Ashwin Pajankar) 阿迪亚·乔希 (Aditya Joshi)著 欧拉 译
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
全栈测试
[印]加亚特里 默罕(Gayathri Mohan)
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
数字设计技术与解析
[印]瓦伊巴夫·塔拉特 著;慕意豪 译
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
密码学与网络安全(第4版)
[印]阿图尔·卡哈特(Atul Kahate)著 葛秀慧 金名 译
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
MATLAB 图形学基础
[印]兰詹·帕雷克(Ranjan Parekh) 著;章毓晋 译
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
古老智慧的现代实践:辨喜论吠檀多(瑜伽奥义丛书)
[印]斯瓦米·维韦卡南达(辨喜)
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
从冥想到三摩地:辨喜论王瑜伽和《瑜伽经》(瑜伽奥义丛书)
[印]斯瓦米·维韦卡南达(辨喜)
大学计算机教育国外著名教材系列:数据结构(C语言版)(影印版)
被设想的未来
[印]普立梵(Prem Poddar) 【英】安德鲁·瓦特(Andrew Watt)