MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Function main

CPP/structures/LRU.cpp:33–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33int main()
34{
35
36 cin >> sz;
37 insert(1);
38 insert(2);
39 insert(3);
40 insert(1);
41 insert(4);
42 insert(5);
43 display();
44 return 0;
45}

Callers

nothing calls this directly

Calls 2

insertFunction · 0.70
displayFunction · 0.70

Tested by

no test coverage detected