r******r 发帖数: 700 | 1 例如,一个 txt 文件中保存有:
- {member}
├ {student}
│ ├ {college student}
│ │ ├ {fresh}
│ │ ├ {second year}
│ │ ├ {junior}
│ │ ├ {senior}
│ ├ {high school student}
│ ├ {middle school student}
│ ├ {primariy school stduent}
什么算法可以将其读入一个数据结构中? |
a****i 发帖数: 1182 | 2 自己写?
转成xml或者json不难
第一个├ 是 {
以后同层次的├ 就是 }{
最后一个是 }
【在 r******r 的大作中提到】 : 例如,一个 txt 文件中保存有: : - {member} : ├ {student} : │ ├ {college student} : │ │ ├ {fresh} : │ │ ├ {second year} : │ │ ├ {junior} : │ │ ├ {senior} : │ ├ {high school student} : │ ├ {middle school student}
|
r******r 发帖数: 700 | 3 就是读入一个 n-ary generic tree. 不转,直接读 txt 文件。
什么样的标准算法可以读入?正在捉摸中 。。。
【在 a****i 的大作中提到】 : 自己写? : 转成xml或者json不难 : 第一个├ 是 { : 以后同层次的├ 就是 }{ : 最后一个是 }
|
T****U 发帖数: 3344 | 4 fileinputstream
or scanner
【在 r******r 的大作中提到】 : 就是读入一个 n-ary generic tree. 不转,直接读 txt 文件。 : 什么样的标准算法可以读入?正在捉摸中 。。。
|
r******r 发帖数: 700 | 5 你这回答 。。。
我不知道 fileinputstream or scanner?
【在 T****U 的大作中提到】 : fileinputstream : or scanner
|
T****U 发帖数: 3344 | 6 因为我们都不明白你的标准算法是什么意思,明明就是按格式读个文件而已
【在 r******r 的大作中提到】 : 你这回答 。。。 : 我不知道 fileinputstream or scanner?
|
r******r 发帖数: 700 | 7 比如,那首先需要写一个 tree 的结构,然后需要填充这棵树,涉及到如何 visit 树
的节点 吧。
【在 T****U 的大作中提到】 : 因为我们都不明白你的标准算法是什么意思,明明就是按格式读个文件而已
|