Leetcode LRU Cache

LRU Cache

  Total Accepted: 3803  Total Submissions: 29895 My Submissions

Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.

get(key) - Get the value (will always be positive) of the key if the key exists in the cache, otherwise return -1.
set(key, value) - Set or insert the value if the key is not already present. When the cache reached its capacity, it should invalidate the least recently used item before inserting a new item.

五星级难度的题目。

这里的get和set操作都要求时间复杂度为O(1)。

思考了好久才想到要用一个双向链表数据结构来保存优先级列表,代表这里的LRU Cache。这个是本题的关键。

如果使用其他方法,例如堆操作,好像最多能使得get或者set其中一个是O(1),一个需要O(lgn),会超时。

因为这里需要利用key快速定位value,要频繁修改优先级,即也要利用key快速定位优先级,并能修改优先级。原来要考指针的熟练使用。

关键点:

1 建立一个新数据结构:双向链表,包含数据key和value

2 使用一个map,可以快速定位这个数据结构节点,这样可以快速得到value和修改节点指针

3 保存好头指针和尾指针,代表优先级最高和最低的节点


struct LRUstruct
{
	int value;
	int key;
	LRUstruct *pre;
	LRUstruct *next;
	LRUstruct(int v=0,int k=0, LRUstruct *p=NULL, LRUstruct *n=NULL)
		:value(v), key(k), pre(p), next(n){}
};

struct HeadTail
{
	LRUstruct head;
	LRUstruct tail;
	HeadTail(LRUstruct h, LRUstruct t):head(h), tail(t){}
};

class LRUCache{
public:
	int size;
	unordered_map<int, LRUstruct *> keyMap;
	HeadTail ht;

	LRUCache(int capacity):ht(LRUstruct(),LRUstruct())
	{
		size = capacity;
	}

	int get(int key) 
	{
		if (keyMap.empty() || !keyMap.count(key)) return -1;

		LRUstruct *ls = keyMap[key];
		//拆除ls
		ls->pre->next = ls->next;
		ls->next->pre = ls->pre;

		insertTail(ls);

		return ls->value;
	}

	void set(int key, int value) 
	{
		if (keyMap.empty())
		{
			LRUstruct *ls = new LRUstruct(value, key);
			ht.head.next = ls;
			ls->pre = &ht.head;
			ht.tail.pre = ls;
			ls->next = &ht.tail;
			keyMap[key] = ls;
			return;
		}

		if (keyMap.count(key))
		{
			LRUstruct *ls = keyMap[key];
			ls->value = value;
			//拆除ls
			ls->pre->next = ls->next;
			ls->next->pre = ls->pre;

			insertTail(ls);
		}
		else
		{
			if (keyMap.size() < size)
			{
				LRUstruct *ls = new LRUstruct(value, key);
				//插入后面
				insertTail(ls);
				//更新map表
				keyMap[key] = ls;

			}
			else
			{
				LRUstruct *p_tmp = ht.head.next;
				keyMap.erase(p_tmp->key);
				deleteHead();

				LRUstruct *ls = new LRUstruct(value, key);
				insertTail(ls);

				keyMap[key] = ls;
				delete p_tmp;
			}
		}
	}

	void insertTail(LRUstruct *ls)
	{
		ls->pre = ht.tail.pre;
		ht.tail.pre->next = ls;
		ls->next = &ht.tail;
		ht.tail.pre = ls;
	}
	void deleteHead()
	{
		ht.head.next = ht.head.next->next;
		ht.head.next->pre = &ht.head;
	}
};

曾经令人望而却步的题目,征服她!


更新:

使用环形双链表数据结构的精炼的代码:

转载注明出处:http://blog.csdn.net/kenden23/article/details/18693921

//2014-2-20 update
struct douLink
{
	int key;
	int val;
	douLink *pre;
	douLink *post;
	douLink(int k, int v):key(k), val(v){}
};
class LRUCache{
public:
	//2014-2-20 update
	douLink head_tail;
	unordered_map<int, douLink *> key_to_nodes;
	int size;
	LRUCache(int capacity):head_tail(0, 0) 
	{
		size = capacity;
		head_tail.pre = head_tail.post = &head_tail;
	}

	int get(int key)
	{
		if (!key_to_nodes.count(key)) return -1;
		douLink *t = key_to_nodes[key];
		unchainNode(t);
		insertHead(t);
		return t->val;		
	}

	void set(int key, int value)
	{
		if (!key_to_nodes.count(key))
		{
			if (key_to_nodes.size() >= size)
			{
				douLink *t = head_tail.pre;
				unchainNode(t);
				key_to_nodes.erase(t->key);
				delete t;
			}
			douLink *p = new douLink(key, value);
			insertHead(p);
			key_to_nodes[key] = p;
		}
		else 
		{
			douLink *t = key_to_nodes[key];
			t->val = value;
			unchainNode(t);
			insertHead(t);
		}
	}
	void insertHead(douLink *&p)//构成一个环形双链表数据结构
	{
		p->post = head_tail.post;
		head_tail.post = p;
		p->pre = &head_tail;
		p->post->pre = p;//不用考虑单个head_tail的情况了!!!环形双链表数据结构更方便!
	}
	void unchainNode(douLink *&t)
	{
		t->pre->post = t->post;
		t->post->pre = t->pre;
	}
};






  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值