diff options
Diffstat (limited to '9p37.cpp')
-rw-r--r-- | 9p37.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/9p37.cpp b/9p37.cpp new file mode 100644 index 0000000..50a67a1 --- /dev/null +++ b/9p37.cpp @@ -0,0 +1,17 @@ + +/* + * + * 9.37 + * + * + */ + +int main () { + + // Array is fixed size + // Not sure why list does not have capacity. + // From my understanding of manually creating linked lists + // We create each node and connect the previous one to the new one. + // Maybe there is not really a need to allocate for nodes that dont exist? + return 0; +} |