如何为文件/目录树创建结构。c 程序获取一个 txt 文件输入,其中包含每个 txt 文件路径的 shell 脚本。例如
a\a1.txt
a\m\m1.txt
你将如何为此创建一个结构?
也许
对于一个简单的一维字符串
struct MyPath {
char *element; // Pointer to the string of one part.
MyPath *next; // Pointer to the next part - NULL if none.
}
对于完整的二叉树表示
struct Node {
char *element; // Pointer to the string - node.
Node *left; // Pointer to the left subtree.
Node *right; // Pointer to the right subtree.
}