数据结构与算法分析(C++版)全套PPT课件.pptx
Data StructuresSouth China University of TechnologySchool of Computer Science and Engineering*Reading Material数据结构与算法分析(C++版) (第三版)Clifford A.Shaffer.数据结构(C语言版) ,严蔚敏,吴伟民 ,清华大学出版社;数据结构(用面向对象方法与c++描述),殷人昆等,清华大学出版社;算法与数据结构,傅清祥,王晓东,电子工业出版社;*MOOCS课程配套慕课:/course/SCUT08091000960*PreliminariesChapter1 Data Structures and AlgorithmsChapter2 Mathematical PreliminariesChapter3 Algorithm Analysis*Chapter 1. Data Structures and Algorithms1. What is Data structure?2. How to present Data structures?3. What is algorithm?4. Data structure vs Algorithm.5. How to select efficient Data structures and algorithms?*1. What is data structure?*A data structure is a particular way of storing and organizing data in a computer so that it can be used efficiently.Different kinds of data structures are suited to different kinds of applications.Some example (1)Digital Library.001高等数学樊映川机械工业出版社…002理论力学罗远祥电子工业出版社…003高等数学华罗庚高等教育出版社…004线性代数栾汝书高等教育出版社………………Data structure:List*Some example (2) Game: Gobang(五子棋), Chess, TicTacToe(井字棋) Data structure:Tree*Some example (3)Social networkData structure:Graph*Why Data Structure is Important for us?大型基建项目进度管理 (Graph) 病毒模拟 - 离散事件队列 (List) 智能交通预测 - (Graph,List)搜索引擎 - (Tree,List)Chapter 1. Data Structures and Algorithms1. What is Data structure?2. How to present Data structures?3. What is algorithm?4. Data structure vs Algorithm.5. How to select efficient Data structures and algorithms?*2.How to present Data structures?In different Languages, there are different forms of implementation of the similar data structures.Abstract Data Type (ADT): is a language independent model to describe data structures.ADT is defined in terms of a set of values and a set of operations on the data.*Only about input and output.No detail about implementation .Example of ADTtemplate class Elem class List {public: virtual void clear() = 0; virtual bool insert(const Elem) = 0; virtual bool append(const Elem) = 0; virtual bool remove(Elem) = 0; virtual void setStart() = 0; virtual
您可能关注的文档
- 汽车共享概论-全套PPT课件.pptx
- 中国历史文选-全套PPT课件.pptx
- 《电气控制与S7-1200 PLC应用技术》全套PPT课件.pptx
- 电子商务客户关系管理-全套PPT课件.pptx
- 工程导论-全套PPT课件.pptx
- 计算机应用情境教学基础教程(Windows7+Office2016)全套PPT课件.pptx
- 跨境营销与管理-全套PPT课件.pptx
- 任志安管理经济学-全套PPT课件.pptx
- 数字电子技术-全套PPT课件.pptx
- 《世界市场行情》全套PPT课件.pptx
- 河北盐山中学等校2025-2026学年上学期高三一模化学试卷(含解析).docx
- 河北正定中学2025-2026学年高一上学期期末考试物理试卷(含解析).docx
- 河北张家口市怀安县2025-2026学年第一学期期末教学综合评价八年级地理试卷(含解析).docx
- 河南安阳市殷都区2025-2026学年第一学期期末教学质量检测七年级地理试卷(含解析).docx
- 河南安阳市滑县2025一2026学年第一学期期末学业质量监测八年级地理试题(含解析).docx
- 河南安阳市林州市2025-2026学年上学期期末考试高一政治试题(含解析).docx
- 河南焦作市武陟县第一中学2025-2026学年高一上学期1月月考语文试卷(含解析).docx
- 河南济源市2025-2026学年上学期期末学业质量调研七年级历史试卷(含解析).docx
- PICC导管并发症的紧急处理与护理.pptx
- 河南鹤壁市2025-2026学年高二上学期期末考试生物试题(含解析).docx
原创力文档

文档评论(0)