-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLRUCache.cs
48 lines (39 loc) · 1.22 KB
/
LRUCache.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using System.Collections.Generic;
namespace Blog.LRUCacheThreadSafe
{
public class LRUCache<T>
{
private readonly Dictionary<int, LRUCacheItem<T>> _records = new Dictionary<int, LRUCacheItem<T>>();
private readonly LinkedList<int> _freq = new LinkedList<int>();
private readonly int _capacity;
public LRUCache(int capacity)
{
_capacity = capacity;
}
public int Capacity => _capacity;
public object Get(int key)
{
if (!_records.ContainsKey(key)) return null;
_freq.Remove(key);
_freq.AddLast(key);
return _records[key].CacheValue;
}
public void Set(int key, T val)
{
if (_records.ContainsKey(key))
{
_records[key].CacheValue = val;
_freq.Remove(key);
_freq.AddLast(key);
return;
}
if (_records.Count >= _capacity)
{
_records.Remove(_freq.First.Value);
_freq.RemoveFirst();
}
_records.Add(key, new LRUCacheItem<T> { CacheKey = key, CacheValue = val });
_freq.AddLast(key);
}
}
}