输出:
4
A K M
B F H L N O
C D G I P
E J
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
python解法
- 解题思路:
- 该代码的目的是根据输入的字符串构建一棵多叉树,并按层级输出每层的节点。输入的字符串包含评论内容和每个评论的子评论数量。程序使用递归方法将评论及其子评论按层级组织到树结构中,并最终输出每一层的评论内容。
具体步骤如下:
输入处理:
输入的字符串通过逗号分隔,每个评论后面紧跟着一个数字,表示该评论的子评论数量。
例如输入 “A,2,B,0,C,1,D,0” 表示:
A 有 2 个子评论:B 和 C。
B 没有子评论。
C 有 1 个子评论:D。
D 没有子评论。
树的构建:
使用 tree 列表存储每一层的评论,tree[0] 为第一层评论,tree[1] 为第二层评论,以此类推。
使用 queue 队列来依次处理评论和子评论数量。
递归函数 recursive() 处理子评论,逐层递归构建树。
结果输出:
最终输出树的层数以及每一层的评论内容
def get_result(comments):
tree = []
queue = comments.split(",")
level = 1
while queue:
comment = queue.pop(0)
if len(tree) < level:
tree.append([])
tree[0].append(comment)
child_count = int(queue.pop(0))
recursive(queue, level + 1, child_count, tree)
print(len(tree))
for level_nodes in tree:
print(" ".join(level_nodes))
def recursive(queue, level, child_count, tree):
"""
递归处理子评论
:param queue: 剩余的评论队列
:param level: 当前处理的层级
:param child_count: 当前评论的子评论数量
:param tree: 树的结构,按层级存储评论
"""
for _ in range(child_count):
comment = queue.pop(0)
if len(tree) < level:
tree.append([])
tree[level - 1].append(comment)
count = int(queue.pop(0))
if count > 0:
recursive(queue, level + 1, count, tree)
if __name__ == "__main__":
comments = input()
get_result(comments)
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
java解法
- 解题思路
- 该代码的目的是解析一串表示评论和子评论的字符串,构建一棵树状结构,并按层级输出每一层的评论内容。
核心思路:
输入格式:
输入是一串由逗号分隔的字符串,奇数位置表示评论内容,偶数位置表示该评论的子评论数量。
例如输入:“A,2,B,0,C,1,D,0” 表示:
A 有 2 个子评论:B 和 C。
B 没有子评论。
C 有 1 个子评论:D。
D 没有子评论。
树的构建:
使用 List 数据结构表示树的层级,每一层是一个 List。
使用 Queue 处理输入数据,逐个解析评论及其子评论数量。
递归方法 buildTree 负责构建树的层级结构。
输出结果:
输出树的层数(即层级数)。
依次输出每一层的评论内容。
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Queue;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String data = scanner.nextLine();
scanner.close();
List<List<String>> tree = processComments(data);
outputResult(tree);
}
public static List<List<String>> processComments(String data) {
List<List<String>> tree = new ArrayList<>();
Queue<String> queue = new LinkedList<>();
for (String part : data.split(",")) {
queue.add(part);
}
while (!queue.isEmpty()) {
buildTree(queue, 1, tree);
}
return tree;
}
private static void buildTree(Queue<String> queue, int level, List<List<String>> tree) {
if (tree.size() < level) {
tree.add(new ArrayList<>());
}
String comment = queue.poll();
tree.get(level - 1).add(comment);
int childrenCount = Integer.parseInt(queue.poll());
for (int i = 0; i < childrenCount; i++) {
buildTree(queue, level + 1, tree);
}
}
public static void outputResult(List<List<String>> tree) {
System.out.println(tree.size());
for (List<String> levelComments : tree) {
System.out.println(String.join(" ", levelComments));
}
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
C++解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
C解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: