CMU15445-2023 笔记:Project 0 - Copy-On-Write Trie

发布时间 2023-08-04 22:07:21作者: LambdaQ

CMU15445-2023 笔记:Project 0 - Copy-On-Write Trie

In this project, you will implement a key-value store backed by a copy-on-write trie. Tries are efficient ordered-tree data structures for retrieving a value for a given key. To simplify the explanation, we will assume that the keys are variable-length strings, but in practice they can be any arbitrary type.

Task #1 - Copy-On-Write Trie

Task #2 - Concurrent Key-Value Store

Task #3 - Debugging

Task #4 - SQL String Functions