forked from namigoel/hacktober-coding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LRU.cpp
80 lines (56 loc) · 1.29 KB
/
LRU.cpp
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include<iostream>
#include<bits/stdc++.h>
using namespace std;
// class Lru{
// int capacity;
// list<pair<int,int>> lrlist;
// unordered_map<int,list<pair<int,int>>:: iterator> hs;
// void move_it(int key,int val){
// lrlist.erase(hs[key]);
// lrlist.push_front(make_pair(key,val));
// hs[key]= lrlist.begin();
// }
// public:
// Lru(int capacity){
// this->capacity= capacity;
// }
// int get(int key){
// if(hs.find(key)== hs.end() )
// return -1;
// int val= (*hs[key]).second;
// move_it(key,val);
// return val;
// }
// int put(int key,int value){
// if(hs.find(key)!= hs.end()){
// move_it(key,value);}
// else{
// lrlist.push_front(make_pair(key,value));
// hs[key]= lrlist.begin();
// if(hs.size()> capacity){
// // erase
// hs.erase(lrlist.back().first);
// lrlist.pop_back();
// }
// }
// }
// };
// int main(){
// Lru l(2);
// l.put(1,1);
// l.put(2,2);
// l.get(1);
// l.put(3,3);
// l.get(2);
// l.put(4,4);
// l.get(1);
// l.get(3);
// l.get(4);
// return 0;
// }
int main(){
char s;
s='a';
int c= s-'a';
return c;
}