《Cracking the Coding Interview》——第8章:面向对象设计——题目9

2014-04-23 23:57

题目:如何设计一个内存文件系统,如果可以的话,附上一些代码示例。

解法:很遗憾,对我来说不可以。完全没有相关经验,所以实在无从入手。这题目应该和工作经验相关吧?

代码:

1 // 8.9 How would you design an in-memory file system.
2 // I wouldn't possibly do that without the help of google...quite a lot of specifications and code.
3 int main()
4 {
5     return 0;
6 }
原文地址:https://www.cnblogs.com/zhuli19901106/p/3684352.html