implement a python code that is a filesystem using a tree data structure. If the specific path does not exist, disregard that file using the code template given in this pastebin link: https://pastebin.com/NuPaPAFT The input format is as follows, the first line is the name of the root directory second line is the number of subdirectories that follows For the next files that follows,
implement a python code that is a filesystem using a tree data structure. If the specific path does not exist, disregard that file using the code template given in this pastebin link: https://pastebin.com/NuPaPAFT
The input format is as follows,
the first line is the name of the root directory
second line is the number of subdirectories that follows
For the next files that follows, the format is: Filename-root node,next path,next path,...
Please note the output format.
Sample input 1:
C
12
Users-C
Windows-C
ProgramFiles-C
Adobe-C,ProgramFiles
Steam-C,ProgramFiles
ferdie-C,Users
john-C,Users
guest-C,Users
Firmware-C,Windows
System-C,Windows
Documents-C,Users,ferdie
Downloads-C,Users,ferdie
Output:
C
Users
ferdie
Documents
Downloads
john
guest
Windows
Firmware
System
ProgramFiles
Adobe
Steam
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 2 images