Files
C-Plus-Plus/others/lru_cache.cpp
realstealthninja c6af943508 fix: add cstdint header to all files using fixed width integers (#2717)
* fix: add <cstdint> to subset_sum.cpp

* fix: add <cstdint> to subarray_sum.cpp

* fix: add <cstdint> to wildcard_matching.cpp

* fix: add <cstdint> to count_bit_flips.cpp

* fix: add <cstdint> to count_of_set_bits.cpp

* fix: add <cstdint> to trailing_ciphers.cpp

* fix: add <cstdint> to hamming_distance.cpp

* doc: include doc for hamming_distance

* fix: add <cstdint> to next_higher_numebr_with_same_number_of_set_bits.cpp

* fix: add <cstdint> to power_of_2.cpp

* fix: add <cstdint> to set_kth_bit.cpp

* fix: add <cstdint> to bit_manipulation/set_kth_bit.cpp

* fix: add <cstdint> to bit_manipulation/travelling_salesman_using_bit_manipulation.cpp

* fix: add <cstdint> to ciphers/base64_encoding.cpp

* fix: add <cstdint> to ciphers/hill_cipher.cpp

* fix: add <cstdint> to ciphers/uint128_t.hpp

* fix: add <cstdint> to data_structures/dsu_path_compression.cpp

* fix: add <cstdint> to data_structures/dsu_path_compression.cpp

* fix add <cstdint> to datastructures/list_array>cpp

* fix add <cstdint> to datastructures/queue_using_array.cpp

* fix: add <cstdint> to sparse_table.cpp

* fix: add <cstdint> to stack_using_list_queue.cpp

* fix: add <cstdint> to treap.cpp

* fix: add <cstdint> to graham_scan_functions.hpp

* fix: add <cstdint> to graph/**

* fix: add integral typdefs to hashing/**

* fix: add <cstdint> to math/**

* fix: add <cstdint> to numerical_methods/**

* fix: add <cstdint> to other/**

* fix: add <cstdint> to search/**

* fix: add <cstdint> to sorting/**

* fix: add <cstdint> to string/**

* doc: remove include statement from comment

* fix: make tests static

Co-authored-by: David Leal <halfpacho@gmail.com>

* fix: make tests static

Co-authored-by: David Leal <halfpacho@gmail.com>

* chore: use iwyu on backtracking/**.cpp

* chore: use iwyu on bit_manip/**.cpp

* chore: use iwyu on ciphers/**.cpp

* chore: use iwyu on cpu_scheduling_algorithms/**.cpp

* chore: use iwyu on data_structures/**.cpp

* chore: use iwyu on divide_and_conquer/**.cpp

* chore: use iwyu on geometry/**.cpp

* chore: use iwyu on graph/**.cpp

* chore: use iwyu on hashing/**.cpp

* chore: use iwyu on machine_learning/**.cpp

* chore: use iwyu on math/**.cpp

* chore: use iwyu on numerical_methods/**.cpp

* chore: use iwyu on others/**.cpp

* chore: use iwyu on probablity/**.cpp

* chore: use iwyu on search/**.cpp

* chore: use iwyu on sorting/**.cpp

* chore: use iwyu on strings/**.cpp

* Revert "chore: use iwyu on strings/**.cpp"

This reverts commit f2127456a8.

* Revert "chore: use iwyu on sorting/**.cpp"

This reverts commit a290ae7ee2.

* Revert "chore: use iwyu on search/**.cpp"

This reverts commit 19d136ae0f.

* Revert "chore: use iwyu on probablity/**.cpp"

This reverts commit 5dd7f82a34.

* Revert "chore: use iwyu on others/**.cpp"

This reverts commit 8a8fd42383.

* Revert "chore: use iwyu on numerical_methods/**.cpp"

This reverts commit eff2f44a50.

* Revert "chore: use iwyu on math/**.cpp"

This reverts commit c47117ca3f.

* Revert "chore: use iwyu on machine_learning/**.cpp"

This reverts commit c3897d3763.

* Revert "chore: use iwyu on hashing/**.cpp"

This reverts commit 0c6611a835.

* Revert "chore: use iwyu on graph/**.cpp"

This reverts commit dabd6d2591.

* Revert "chore: use iwyu on geometry/**.cpp"

This reverts commit 740bd65932.

* Revert "chore: use iwyu on divide_and_conquer/**.cpp"

This reverts commit 16ee49e086.

* Revert "chore: use iwyu on data_structures/**.cpp"

This reverts commit a3b719e368.

* Revert "chore: use iwyu on cpu_scheduling_algorithms/**.cpp"

This reverts commit 24e597f7e2.

* Revert "chore: use iwyu on ciphers/**.cpp"

This reverts commit 3d80295883.

* Revert "chore: use iwyu on bit_manip/**.cpp"

This reverts commit 7edcb6e458.

* Revert "chore: use iwyu on backtracking/**.cpp"

This reverts commit f0a30d7cdb.

* Update search/binary_search.cpp

* Update backtracking/subarray_sum.cpp

* Update backtracking/subset_sum.cpp

* Update backtracking/wildcard_matching.cpp

* Update bit_manipulation/count_bits_flip.cpp

* Update bit_manipulation/count_of_set_bits.cpp

* Update bit_manipulation/count_of_trailing_ciphers_in_factorial_n.cpp

* Update bit_manipulation/hamming_distance.cpp

* Update bit_manipulation/next_higher_number_with_same_number_of_set_bits.cpp

* Update bit_manipulation/power_of_2.cpp

* Update others/lru_cache.cpp

* Update bit_manipulation/set_kth_bit.cpp

* Update bit_manipulation/travelling_salesman_using_bit_manipulation.cpp

* Update ciphers/base64_encoding.cpp

* Update ciphers/hill_cipher.cpp

* Update ciphers/uint128_t.hpp

* Update cpu_scheduling_algorithms/fcfs_scheduling.cpp

* Update data_structures/dsu_path_compression.cpp

* Update data_structures/dsu_union_rank.cpp

* Update data_structures/list_array.cpp

* Update data_structures/queue_using_array.cpp

* Update data_structures/sparse_table.cpp

* Update data_structures/stack_using_queue.cpp

* Update data_structures/treap.cpp

* Update geometry/graham_scan_functions.hpp

* Update graph/bidirectional_dijkstra.cpp

* Update graph/connected_components_with_dsu.cpp

* Update graph/cycle_check_directed_graph.cpp

* Update graph/is_graph_bipartite2.cpp

* Update graph/travelling_salesman_problem.cpp

* Update hashing/md5.cpp

* Update hashing/sha1.cpp

* Update math/n_choose_r.cpp

* Update strings/z_function.cpp

* Update strings/manacher_algorithm.cpp

* Update sorting/wiggle_sort.cpp

* Update sorting/selection_sort_recursive.cpp

* Update sorting/selection_sort_iterative.cpp

* Update sorting/recursive_bubble_sort.cpp

* Update sorting/radix_sort2.cpp

* Update sorting/dnf_sort.cpp

* Update sorting/cycle_sort.cpp

* Update search/sublist_search.cpp

* Update search/saddleback_search.cpp

* Update search/interpolation_search.cpp

* Update search/floyd_cycle_detection_algo.cpp

* Update search/exponential_search.cpp

* Update search/exponential_search.cpp

* Update math/n_bonacci.cpp

* Update math/aliquot_sum.cpp

* Update math/check_factorial.cpp

* Update math/double_factorial.cpp

* Update math/eulers_totient_function.cpp

* Update math/factorial.cpp

* Update math/fibonacci.cpp

* Update math/fibonacci_matrix_exponentiation.cpp

* Update math/fibonacci_sum.cpp

* Update math/finding_number_of_digits_in_a_number.cpp

* chore: remove "/// for integral typedefs"

* chore: remove for integral typedefs from modular division

* fix: remove comment from include

* fix: add cstdint to gale shapely

---------

Co-authored-by: David Leal <halfpacho@gmail.com>
2024-11-04 17:38:54 +05:30

270 lines
7.7 KiB
C++

/**
* @file
* @brief An implementation of
* [LRU
* Cache](https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU)).
* Lru is a part of cache algorithms (also frequently called cache replacement
* algorithms or cache replacement policies).
*
* ### Logic
* * Discards the least recently used items first.
* * This algorithm requires keeping track of what was used when, which is
* expensive if one wants to make sure the algorithm always discards the least
* recently used item.
* * General implementations of this technique require keeping "age bits"
* for cache-lines and track the "Least Recently Used" cache-line based on
* age-bits.
* * In such an implementation, every time a cache-line is used, the age of
* all other cache-lines changes
*
* ### Algorithm explanation
* For a cache of page frame x:
* * Check if the page is present in cache.
* * If not present, then check is the cache is full or not:
* * If the cache is full, REMOVE the last element from the cache.
* * If the element is present in cache, then shift that element to
* first position in cache from its original position.
* * This way you can keep the least recently used elements in the
* last and most recently used in front of the cache.
*
* Every time a requested page is not found in cache, that is a miss or page
* fault, and if the page is present in cache, then its a hit.
*
* ## Data Structure used
* * In the algorithm below we used two different data structure, one is linked
* list and other one is a hash map
* * The linked list is used to contain the pages and the hash map contains the
* pages and their address.
* * Every time a new page is requested, we first check in the hash map if the
* page is present or not.
* * If not present, and the cache is full, we simply delete the last entry in
* the cache.
* * If present, we shift that page from its current location to beginning of
* the cache and update the address in hash map for that page.
*
* @author [Nitin Sharma](https://github.com/foo290)
* */
#include <cassert> /// for assert
#include <cstdint>
#include <iostream> /// for IO Operations
#include <list> /// for std::list
#include <unordered_map> /// for std::unordered_map
/**
* @namespace others
* @brief Other algorithms
*/
namespace others {
/**
* @namespace lru_cache
* @brief Implementation of the [LRU caching
* algorithm](https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU))
*/
namespace lru_cache {
/**
* @brief LRU cache class
*/
class LRUCache {
uint64_t pageFrame; ///< Page frame, or total size of the cache.
std::list<uint64_t> cache; ///< Cache linked list (using the STL)
std::unordered_map<uint64_t, std::list<uint64_t>::iterator>
pageMap; ///< Hash map containing pages and their addresses
uint64_t hits =
0; ///< Total number of hits, or total number of times a page
///< was found in cache.
uint64_t pageFault = 0; ///< Total number of miss/page fault, or total
///< number of times a page was not found in cache
public:
/**
* @brief Constructor, Initialize thee LRU class with page frame.
* @param pf Page frame or total size of cache.
* */
explicit LRUCache(uint64_t pf) { pageFrame = pf; }
/**
* @brief Refer to a page, or request a page from memory.
* @param page The page that you are referring to.
* @returns void
* */
void refer(uint64_t page) {
// If the page requested not in cache.
if (pageMap.find(page) == pageMap.end()) {
pageFault++; ///< Increase the page fault by one.
// Check if the cache is full
if (cache.size() == pageFrame) {
// delete the last page from cache
uint64_t lastPage = cache.back();
cache.pop_back();
pageMap.erase(lastPage);
}
}
// The requested page is in the cache
else {
hits++;
// present in cache, erase from current position to bring in front
cache.erase(pageMap[page]);
}
// Push it in the front of the cache and update the page reference in
// page map.
cache.push_front(page);
pageMap[page] = cache.begin();
}
/**
* @brief A function to display the current cache
* @returns Void
* */
void display() {
for (uint64_t &it : cache) {
std::cout << it << " ";
}
std::cout << std::endl;
}
/**
* @brief A function to get page hits
* @returns int
* */
uint64_t getHits() const { return hits; }
/**
* @brief A function to get page fault
* @returns int
* */
uint64_t getPageFault() const { return pageFault; }
};
} // namespace lru_cache
} // namespace others
namespace lru_tests {
/**
* @brief A function to print given message on console.
* @tparam T Type of the given message.
* @returns void
* */
template <typename T>
void log(T msg) {
// It's just to avoid writing cout and endl
std::cout << "[TESTS] : ---> " << msg << std::endl;
}
/**
* @brief A simple test case
* The assert statement will check expected hist and miss to resultant hits and
* miss
* @returns void
* */
static void test_1() {
uint64_t expected_hits = 2;
uint64_t expected_pageFault = 4;
log("Running Test-1...");
others::lru_cache::LRUCache cache(4);
cache.refer(1);
cache.refer(2);
cache.refer(5);
cache.refer(1);
cache.refer(4);
cache.refer(5);
log("Checking assert statement...");
assert(cache.getHits() == expected_hits &&
cache.getPageFault() == expected_pageFault);
log("Assert successful!");
log("Test-1 complete!");
}
/**
* @brief A test case contains hits more than cache size
* The assert statement will check expected hist and miss to resultant hits and
* miss
* @returns void
* */
static void test_2() {
uint64_t expected_hits = 4;
uint64_t expected_pageFault = 2;
log("Running Test-2...");
others::lru_cache::LRUCache cache(4);
cache.refer(1);
cache.refer(1);
cache.refer(1);
cache.refer(1);
cache.refer(1);
cache.refer(5);
log("Checking assert statement...");
assert(cache.getHits() == expected_hits &&
cache.getPageFault() == expected_pageFault);
log("Assert successful!");
log("Test-2 complete!");
}
/**
* @brief A simple test case
* The assert statement will check expected hist and miss to resultant hits and
* miss
* @returns void
* */
static void test_3() {
uint64_t expected_hits = 1;
uint64_t expected_pageFault = 5;
log("Running Test-3...");
others::lru_cache::LRUCache cache(4);
cache.refer(1);
cache.refer(2);
cache.refer(3);
cache.refer(4);
cache.refer(5);
cache.refer(5);
log("Checking assert statement...");
assert(cache.getHits() == expected_hits &&
cache.getPageFault() == expected_pageFault);
log("Assert successful!");
log("Test-3 complete!");
}
/**
* @brief A function to invoke all test cases
* @returns void
* */
static void run_tests() {
test_1();
test_2();
test_3();
log("");
log("TESTS COMPLETED!");
}
} // namespace lru_tests
/**
* @brief Main function
* @returns 0 on exit
*/
int main() {
lru_tests::run_tests();
// Usage
others::lru_cache::LRUCache cache(4);
cache.refer(1);
cache.refer(2);
cache.refer(3);
cache.refer(4);
cache.refer(5);
cache.refer(5);
cache.display();
std::cout << "Hits: " << cache.getHits()
<< " Miss: " << cache.getPageFault() << std::endl;
return 0;
}