顺序表

顺序表的概念及结构

顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构,一般情况下采用数组存储。在数组上完成数据的增删查改。
顺序表一般可以分为:
静态顺序表:使用定长数组存储。
动态顺序表:使用动态开辟的数组存储。
静态顺序表适用于确定知道需要存多少数据的场景.
静态顺序表的定长数组导致N定大了,空间开多了浪费,开少了不够用

public class MyArrayList {

    public int[] elem;//数组
    public int usedSize;//有效的数据个数
    public static final int Capacity = 10;//初始容量

    public MyArrayList() {
        this.elem = new int[Capacity];
        this.usedSize = 0;
    }

    // 打印顺序表
    public void display() {
        for(int i = 0; i < this.usedSize; i++) {
            System.out.print(this.elem[i] + " ");
        }
        System.out.println();
    }

    // 判断顺序表是否满了
    private boolean isFull() {
        return this.usedSize == this.elem.length;
    }

    //检查位置是否合法
    private void checkPos(int pos) {
        if(pos < 0 || pos > this.usedSize){
            throw new RuntimeException("pos位置不合法!");
        }
    }

    // 在pos位置新增元素
    public void add(int pos, int data) {
        checkPos(pos);//检查插入位置是否合法

        //如果满了就扩大数组
        if(isFull()){
            this.elem = Arrays.copyOf(this.elem,2*this.elem.length);
            }

        for(int i = this.usedSize - 1; i >= pos  ; i--) {
            this.elem[i+1] = this.elem[i];
        }
        this.elem[pos] = data;
        this.usedSize++;
    }

    // 判定是否包含某个元素  12
    public boolean contains(int toFind) {
        for(int i = 0;i < this.usedSize; i++) {
            if(this.elem[i] == toFind){
                return true;
            }
        }
        return false;
    }

    // 查找某个元素对应的位置
    public int search(int toFind) {
        for(int i = 0;i < this.usedSize; i++) {
            if(this.elem[i] == toFind){
                return i;
            }
        }
            return -1;
    }

    // 获取 pos 位置的元素
    public int getPos(int pos) {
        if(this.usedSize ==0) {
            throw new RuntimeException("顺序表为空!");//手动抛出异常
        }
        if(pos < 0 || pos >= this.usedSize) {
            System.out.println("该pos无效");
        }
        return this.elem[pos];
    }

    // 获取顺序表长度
    public int size() {
        return this.usedSize;
    }

    //删除第一次出现的关键字toRemove
    public void remove(int toRemove) {
        for(int i = search(toRemove) ; i < this.usedSize - 1; i++) {
            this.elem[i] = this.elem[i+1];
        }
        this.usedSize--;
    }

    // 清空顺序表
    public void clear() {
        this.usedSize = 0;
    }

    //更新pos位置的元素   -19
    public void setPos(int pos, int value) {

        if(pos < 0 || pos >= this.usedSize){
            System.out.println("该“pos”无效");
        }
        this.elem[pos] = value;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值