我有一个简单的玩具代码深度优先搜索,但为什么我得到一个%后打印?
# Definition for a binary tree node
class TreeNode:
def __init__(self, x):
self.val = x
self.left = None
self.right = None
def dfs(t):
if t==None:
print("",end="")
else:
print(t.val,end="")
dfs(t.left)
dfs(t.right)
t=TreeNode(1)
t.left=TreeNode(2)
t.right=TreeNode(3)
t.left.left=TreeNode(4)
t.left.right=TreeNode(5)
t.right.left=TreeNode(6)
t.right.right=TreeNode(7)
dfs(t)
产量:1245367%
最佳答案
那是你的弹壳提示。您的输出不以行结束符结尾,因此您的shell在程序输出的同一行上打印其“next command,please”提示。
关于python - 为什么在递归DFS之后打印特殊字符?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47490033/