- 为什么hashmap在o(1)时间能查找到节点?
根据查找的内容直接得到数组的下标,所以 时间是o(1)。
示例代码
Java中也有双向链表 LinkedList , 但是 LinkedList 封装的太深,没有能在 O(1) 时间内删除中间某个元素的API(C++的 list 有个 splice() , O(1), 可以直接使用 splice() ),于是我们只能自己实现一个双向链表。当然也可以直接用 LinkedHashMap ,代码更短,但这是一种偷懒做法,面试官一定会让你自己重新实现。
// LRU Cache
// 时间复杂度O(logn),空间复杂度O(n)
public class LRUCache {
private int capacity;
private final HashMap<Integer, Node> map;
private Node head;
private Node end;
//初始创建一个hashmap
public LRUCache(int capacity) {
this.capacity = capacity;
map = new HashMap<>();
}
//get将元素移除和放到链表头部
public int get(int key) {
if(map.containsKey(key)){
Node n = map.get(key);
remove(n);
setHead(n);
return n.value;
}
return -1;
}
//set先检查是否包含在hashmap中,包含则在链表中删除并放到链表头部,不包含则创建一个新节点并判断hashmap是否需要扩容
public void set(int key, int value) {
if (map.containsKey(key)){
Node old = map.get(key);
old.value = value;
remove(old);
setHead(old);
} else {
Node created = new Node(key, value);
if (map.size() >= capacity){
map.remove(end.key);
remove(end);
setHead(created);
} else {
setHead(created);
}
map.put(key, created);
}
}
private void remove(Node n){
if (n.prev !=null) {
n.prev.next = n.next;
} else {
head = n.next;
}
if (n.next != null) {
n.next.prev = n.prev;
} else {
end = n.prev;
}
}
private void setHead(Node n){
n.next = head;
n.prev = null;
if (head!=null ) head.prev = n;
head = n;
if(end == null) end = head;
}
// doubly linked list
static class Node {
int key;
int value;
Node prev;
Node next;
public Node(int key, int value) {
this.key = key;
this.value = value;
}
}
}