|
|
|
|
|
by Const-me
3349 days ago
|
|
Technically, yes I can. However, look at the Rust implementation of the LRU cache:
https://github.com/contain-rs/linked-hash-map/blob/master/sr... See how much code is there (more than 1k lines), and note most code is unsafe. In C++, one would probably use list<pair<K,V>> for storage, together with unordered_map<K, list<pair<K,V>>::iterator> for indexing. And the implementation would be trivial, because there’s no need to re-implement a linked list, you only need to implement these get/set methods that update both collections at the same time. In Rust however, they had to come up with their own implementation of linked list. The LinkedList from standard library doesn’t expose raw node pointers in the API, therefore it can’t be used for the job. |
|