• java算法篇之一:动态数组


    /**
     * 自定义数组
     *
     * @author chy
     * @date 2020-05-08 11:25
     */
    public class Array<E> {
    
        private E[] data;
        private int size;
    
        // 构造函数,传入数组的容量capacity构造Array
        public Array(int capacity) {
            data = (E[]) new Object[capacity];
            size = 0;
        }
    
        // 无参构造函数,默认数组的容量capacity=10
        public Array() {
            this(10);
        }
    
        // 获取数组中的元素个数
        public int getSize() {
            return size;
        }
    
        // 获取数组的容量
        public int getCapacity() {
            return data.length;
        }
    
        // 返回数组是否为空
        public boolean isEmpty() {
            return size == 0;
        }
    
        // 向数组末尾添加一个新元素e
        public void addLast(E e) {
            add(size, e);
        }
    
        // 在数组最开始添加一个新元素e
        public void addFirst(E e) {
            add(0, e);
        }
    
        // 在第index个位置插入一个新元素e
        public void add(int index, E e) {
            if (index < 0 || index > size) {
                throw new IllegalArgumentException("Add failed. Require index >= 0 and index <= size.");
            }
    
            if (size == data.length) {
                resize(data.length * 2);
            }
    
            for (int i = size - 1; i >= index; i--) {
                data[i + 1] = data[i];
            }
            data[index] = e;
            size++;
        }
    
        // 获取第index个位置的元素
        public E get(int index) {
            if (index < 0 || index >= size) {
                throw new IllegalArgumentException("Get failed. Index is illegal.");
            }
            return data[index];
        }
    
        // 修改第index个位置的元素为e
        public void set(int index, E e) {
            if (index < 0 || index >= size) {
                throw new IllegalArgumentException("Set failed. Index is illegal.");
            }
            data[index] = e;
        }
    
        // 查找数组中是否含有元素e
        public boolean contains(E e) {
            for (int i = 0; i < size; i++) {
                if (data[i] == e) {
                    return true;
                }
            }
            return false;
        }
    
        // 查找数组中第一个元素e所在的索引,如果不存在元素e,则返回-1
        public int find(E e) {
            for (int i = 0; i < size; i++) {
                if (data[i].equals(e)) {
                    return i;
                }
            }
            return -1;
        }
    
        // 查找数组中所有元素e所在的索引,如果不存在元素e,则返回null
        public int[] findAll(int e) {
            StringBuilder indexBuilder = new StringBuilder();
            for (int i = 0; i < size; i++) {
                if (data[i].equals(e)) {
                    if (indexBuilder.length() > 0) {
                        indexBuilder.append(",");
                    }
                    indexBuilder.append(i);
                }
            }
    
            if (indexBuilder.length() > 0) {
                String[] indexArr = indexBuilder.toString().split(",");
                int[] ids = new int[indexArr.length];
                for (int i = 0; i < indexArr.length; i++) {
                    ids[i] = Integer.parseInt(indexArr[i]);
                }
                return ids;
            }
            return null;
        }
    
        // 从数组中删除index位置的元素,并返回删除的元素
        public E remove(int index) {
            if (index < 0 || index >= size) {
                throw new IllegalArgumentException("Remove failed. Index is illegal.");
            }
    
            E ret = data[index];
            for (int i = index; i < size - 1; i++) {
                data[i] = data[i + 1];
            }
            size--;
            data[size] = null; // 释放内存引用,否则会导致垃圾回收无法回收该对象
    
            if (size == data.length / 4 && data.length / 2 != 0) {
                resize(data.length / 2);
            }
    
            return ret;
        }
    
        // 从数组中删除第一个元素,并返回删除的元素
        public E removeFirst() {
            return remove(0);
        }
    
        // 从数组中删除最后一个元素,并返回删除的元素
        public E removeLast() {
            return remove(size - 1);
        }
    
        // 从数组中删除元素e
        public void removeElement(E e) {
            int index = find(e);
            if (index != -1) {
                remove(index);
            }
        }
    
        @Override
        public String toString() {
            StringBuilder res = new StringBuilder();
            res.append(String.format("Array: size = %d, capacity = %d
    ", size, data.length));
            res.append("[");
            for (int i = 0; i < size; i++) {
                res.append(data[i]);
                if (i != size - 1) {
                    res.append(", ");
                }
            }
            res.append("]");
            return res.toString();
        }
    
        private void resize(int capacity) {
            E[] newData = (E[]) new Object[capacity];
            if (size >= 0) {
                System.arraycopy(data, 0, newData, 0, size);
            }
            data = newData;
        }
    }
    
  • 相关阅读:
    java连接Oracle数据库实现增删改查并在Navicat中显示
    《程序员修炼之道:从小工到专家》 阅读笔记06
    VirtualBox 共享文件夹设置及使用方法
    Access denied for user 'root'@'localhost' (using password:YES)
    错误记录
    java.lang.NoClassDefFoundError: org/apache/hadoop/hbase/HBaseConfiguration] with root cause
    VirtualBox查看虚拟机IP地址
    用户不在sudoers文件中,此事将被报告
    简单窗口与hbase数据库相连
    AS安装过程中出现的错误
  • 原文地址:https://www.cnblogs.com/jinjiyese153/p/12924956.html
Copyright © 2020-2023  润新知