自定义有序Map

java 复制代码
package cn.ziqirj.common.utils;

import lombok.Getter;
import lombok.Setter;

import java.util.ArrayList;
import java.util.List;

/**
 * 模拟Map集合,key不可重复,按插入顺序排序
 * @author zhangji
 *
 * @param <T>
 */
public class CustomOrderlyMap<T> {
	@Getter
    private List<String> keys = new ArrayList<>();
	@Getter
    private List<T> values = new ArrayList<>();
	private List<map<T>> kv = new ArrayList<>();
	
	public CustomOrderlyMap() {}

	/**
	 * 添加元素
	 * @param key 键
	 * @param value	值
	 */
	public void add(String key, T value) {
		Integer index = getIndex(key);
		if(null != index && index != -1) {
			values.set(index, value);
			kv.get(index).setValue(value);
			return ;
		}
		keys.add(key);
		values.add(value);
		kv.add(new map<T>(key, value));
	}

	/**
	 * 批量添加元素
	 * @param customMap 集合
	 */
	public void addAll(CustomOrderlyMap<T> customMap) {
		if(null == customMap || customMap.size() == 0) {
            return ;
        }
		List<map<T>> kvl = customMap.kv;
		for(map<T> map : kvl) {
            this.add(map.getKey(), map.getValue());
        }
	}

	/**
	 * 移除元素
	 * @param key 键
	 */
	public void remove(String key) {
		Integer index = getIndex(key);
		if(null == index || index == -1 ) {
            return ;
        }
		keys.remove(index);
		values.remove(index);
		kv.remove(index);
	}
	
	/**
	 * 移除元素
	 * @param obj 值
	 */
	public void remove(T obj) {
		Integer index = getIndex(obj);
		if(null == index || index == -1 ) {
            return ;
        }
		keys.remove(index);
		values.remove(index);
		kv.remove(index);
	}

	/**
	 * 清空集合
	 */
	public void removeAll() {
		this.keys = new ArrayList<>();
		this.values = new ArrayList<>();
		this.kv = new ArrayList<>();
	}
	
	/**
	 * 关闭集合
	 */
	public void close() {
		this.keys.clear();
		this.values.clear();
		this.kv.clear();
	}

	/**
	 * 设置元素
	 * @param key 键
	 * @param value 值
	 */
	public void set(String key, T value) {
		Integer index = getIndex(key);
		if(null == index || index.intValue() == -1)
			return ;
		values.set(index, value);
		kv.get(index).setValue(value);
	}

	/**
	 * 获取元素
	 * @param key 键
	 * @return T
	 */
	public T get(String key) {
		Integer index = getIndex(key);
		if (null == index || index == -1)
			return null;
		return kv.get(index).getValue();
	}

	/**
	 * 获取集合大小
	 * @return Integer
	 */
    public Integer size() {
		return this.kv.size();
	}

	/**
	 * 判断集合是否为空
	 * @return boolean
	 */
	public boolean isEmpty() {
		return this.kv.isEmpty();
	}
	
	/**
	 * 打印集合
	 */
	public void print() {
		if(isEmpty()) {
            System.out.println("null");
        }
		System.out.print("CustomMap : [");
		for(map<T> m : this.kv) {
			System.out.print(m.toString());
		}
		System.out.println("]");
	}

	/**
	 * 获取key的索引
	 * @param key 键
	 * @return Integer
	 */
	private Integer getIndex(String key) {
		int length = this.keys.size();
		if (length == 0) {
            return -1;
        }
		for (int i = 0; i < length; i++) {
            if (key.equals(keys.get(i))) {
                return i;
            }
        }
		return null;
	}
	
	/**
	 * 获取value的索引
	 * @param t 值
	 * @return Integer
	 */
	private Integer getIndex(T t) {
		int length = this.values.size();
		if (length == 0) {
            return -1;
        }
		for (int i = 0; i < length; i++) {
            if (t.equals(values.get(i))) {
                return i;
            }
        }
		return null;
	}

}

@Setter
@Getter
class map<T> {
	private String key;
	private T value;

	public map(String key, T value) {
		super();
		this.key = key;
		this.value = value;
	}

    @Override
	public String toString() {
		return "[K:" + key + " --> V:" + value + "]";
	}

}

个人博客:紫琪软件工作室

相关推荐
肘击鸣的百k路1 分钟前
设计模式和原则
java·前端·设计模式
低调的JVM1 小时前
IPV6离线地址库Java版(极致性能,无内存分配,申请了专利)
java·ip
孙尚香蕉1 小时前
ZooKeeper Java API操作
java·zookeeper·java-zookeeper
小小小妮子~3 小时前
设计模式七大设计原则Java 实践
java·设计模式
快乐非自愿9 小时前
一文解秘Rust如何与Java互操作
java·开发语言·rust
小万编程9 小时前
基于SpringBoot+Vue毕业设计选题管理系统(高质量源码,提供文档,免费部署到本地)
java·vue.js·spring boot·计算机毕业设计·java毕业设计·web毕业设计
m0_748235079 小时前
使用rustDesk搭建私有远程桌面
java
快乐是9 小时前
发票打印更方便
java
文浩(楠搏万)9 小时前
Java内存管理:不可达对象分析与内存泄漏优化技巧 Eclipse Memory Analyzer
java·开发语言·缓存·eclipse·内存泄漏·不可达对象·对象分析
圆蛤镇程序猿9 小时前
【什么是MVCC?】
java·数据库·oracle