提交 26269c2c 编写于 作者: 张志晨

add exercises

上级 24e8390e
......@@ -4,16 +4,16 @@
现在,你需要编写一个程序,读入一个包含若干行的字符串,每行表示一个人的信息。每行的格式如下:
<人物名称> is the <父亲名称>\'s <儿子>
<人物名称> is the <父亲名称>`s <儿子>
其中,人物名称是一个不包含空格的字符串,父亲名称和儿子也是一个不包含空格的字符串。
例如,下面是一棵柯里昂家族的家谱:
Don Corleone is the Don\'s son
Fredo Corleone is the Don\'s son
Michael Corleone is the Don\'s son
Tom Hagen is the Don\'s adopted son
Don Corleone is the Don`s son
Fredo Corleone is the Don`s son
Michael Corleone is the Don`s son
Tom Hagen is the Don`s adopted son
你的程序需要按照这些信息建立一棵二叉树,并输出这棵树的前序遍历。
......@@ -37,10 +37,10 @@ Don Corleone Fredo Corleone Michael Corleone Tom Hagen
## 输入样例
4
Don Corleone is the Don\'s son
Fredo Corleone is the Don\'s son
Michael Corleone is the Don\'s son
Tom Hagen is the Don\'s adopted son
Don Corleone is the Don`s son
Fredo Corleone is the Don`s son
Michael Corleone is the Don`s son
Tom Hagen is the Don`s adopted son
## 输出样例
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册