8.9 Explain the data structures and algorithms that you would use to design an in-memory file system. Illustrate with an example in code where possible. 这道题让我们设计一个内存文件系统,咋一听感觉挺吓人啊,像是很底层的东西,但其实只是一道很普通的OOB的题目而已.根据书上所述,在一个简化的文件系统,由文件和目录构成的,而文件类File和目录类D…