手写一个HashMap

interface Map<K,V>{
	public V put(K k,V v);
	public V get(K k);
	public int size();
	public interface Entry<K,V>{
		public K getKey();
		public V getValue();
	}
}
public class MyHashMap<K,V> implements Map<K,V> {
	private static int length=16;
	private static double loader=0.75;
	private static int size=0;
	private Entry[] table=null; 
	public MyHashMap() {
		this(length,loader);
	}
	public MyHashMap(int length,double loader) {
		length=length;
		loader=loader;
		table=new Entry[length];
	}
	@Override
	public V put(K k, V v) {
		int i=k.hashCode()%length;
		Entry<K,V> entry=table[i];
		if(entry==null) {
			table[i]=new Entry<K, V>(k, v, null);
		}else {
			table[i]=new Entry<K,V>(k,v,entry);
		}
		size++;
		return (V)table[i].getValue();
	}
	@Override
	public V get(K k) {
		// TODO Auto-generated method stub
		int i=k.hashCode()%length;
		if(table[i]==null) {
			return null;
		}else {
			Entry<K,V> entry=table[i];
			while(entry.next!=null) {
				if(k==entry.getKey()&&k.equals(entry.getKey())) {
					return entry.v;
				}
			}
		}
		return null;
	}
	@Override
	public int size() {
		// TODO Auto-generated method stub
		return size;
	}
	class Entry<K,V> implements Map.Entry<K,V>{
		K k;
		V v;
		Entry<K,V> next;
		public Entry(K k,V v,Entry<K,V> next){
			this.k=k;
			this.v=v;
			this.next=next;
		}
		@Override
		public K getKey() {
			return k;
		}
		@Override
		public V getValue() {
			return v;
		}
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值