搜索结果
查询Tags标签: theSize,共有 3条记录-
表的数组实现
package com.original.algorithm.table; import java.util.Iterator; public class MyArrayList implements Iterable { private static final int DEFAULT_SIZE = 10; private int theSize;private AnyType[] theItems;public MyArrayList() {doClear(); }public void cl…
2021/7/24 6:05:34 人评论 次浏览 -
表的数组实现
package com.original.algorithm.table; import java.util.Iterator; public class MyArrayList implements Iterable { private static final int DEFAULT_SIZE = 10; private int theSize;private AnyType[] theItems;public MyArrayList() {doClear(); }public void cl…
2021/7/24 6:05:34 人评论 次浏览 -
vector类的简单实现
vector支持很多种数据类型,故要定义成模板类0、数据成员长度 theSize 容量 theCapacity 指针 T* array 另外还要指定容量的增长步长int theSize;int theCapacity;T* array;#define WALK_LENGTH 64;1、构造函数无参数构造函数 用几个相同值初始化的构造函数 拷贝构造函数 …
2021/4/13 18:55:35 人评论 次浏览