摘要: 1、Definition Arry数组是一种连续储存的List 储存方式:将线性表中的元素一次储存在连续的储存空间中。 2、Implementation 3、Operations (1)Insert element e at i (2)Delete element e at location i I 阅读全文
posted @ 2016-09-17 19:13 KennyRom 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 1、Definiation A list is a sequence. a0, a1,a2,..., aN (N>0) 2、Character For any list except the empty list, we say that Ai follows(or succeeds)Ai-1(i< 阅读全文
posted @ 2016-09-17 16:40 KennyRom 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 1、What is it? An abstract data type is a set of objects together with a set of operations. 抽象数据类型是带有一组操作的一组对象的集合。 ADTS=objects+operations 2、How to def 阅读全文
posted @ 2016-09-17 15:46 KennyRom 阅读(490) 评论(0) 推荐(0) 编辑