- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
大学,本科,专科,硕士,笔记,课件,期中试卷答案,期末试卷答案,教材答案,知识点,经济法,材料科学基础,材料力学,电路,电子技术基础,高频电子线路,宏观经济学,模拟电路基础,模拟电子技术,数字电路,数字电子技术,数字信号处理,通信原理,信号与系统,化工原理,机械设计基础,机械原理,机械制图,微机原理与接口技术,C++程序设计,JAVA技术与应用,MATLAB基础与应用,计算机网络,计算机组成原理,软件工程数据结构,工程力学,工程热力学,结构力学,力学,流体力学,水力学,工程测量,工程经济学,工
CS 1031lecture12: Applications of BSTs and Linked ListsReview the project onlineDetermine requirementsCome up with an overall designCarry out the implementation对外经济贸易大学《C++程序设计》 CS 1032A Class PersonThe community is a group of individualsFor each individual (i.e., person), we are provided a lot of personal information. Also, many of the queries can be answered directly from the provided personal informationTHEREFORE: It make a lot of sense to define a class called PersonIt should have the data pieces provided in the paragraph of a given person in the input file It should provide accessors (get functions) to return the values of the data pieces. CS 1033The Person Class (Contd.)The variable members should then be: SSN, firstName, lastName, the father’s SSN, the mother’s SSN, and the list of friends (more on the list of friends later)The constructor should take as input the data pieces provided in the input fileThe accessors: getSSN( ), getFullName( ), getFatherSSN( ), getMotherSSN( ), getFriends( ). CS 1034The Community Data StructureNearly all of the queries (all but one) specify the SSN of the person in questionTo be able to answer such queries, the Person (object) whose SSN is the specified SSN must be searched forTherefore, the Persons of the community must be organized into some data structure that provides efficient operations for search (and for insert, because insert is used to fill the data structure) CS 1035The Community Data Structure (Contd.)We studied two structures that support general insert and search operationsLinked listsBinary search trees (BSTs)So, you can use either one of them. In either case, each node should store one Person instance, and the key of each node should be the SSN of the corresponding PersonNote that we also learned that searching in BSTs is a lot faster than in linked listsTherefore, it is better to represent the community (group of persons) as a BST. CS 1036The Community as a BSTIf you decide to use a BST to represent the comm
您可能关注的文档
- 东北农业大学《公司金融学》课件-第1章公司理财导论.pptx
- 东北农业大学《公司金融学》课件-第2章财务报表、税和现金流.pptx
- 东北农业大学《公司金融学》课件-第5章债券与股票的估价.pptx
- 东北农业大学《公司金融学》课件-第6章资本预算.pptx
- 东北农业大学《公司金融学》课件-第7章风险与证券市场线.pptx
- 东北农业大学《公司金融学》课件-第8章资本成本.pptx
- 东北农业大学《公司金融学》课件-第10章财务杠杆与资本结构.pptx
- 东北农业大学《公司金融学》课件-第11章股利分配.pptx
- 东北农业大学《管理学》课件-第2章Understanding Management’s.ppt
- 东北农业大学《管理学》课件-第3-4章Management in a Global Environment.ppt
文档评论(0)