package main import . "nc_tools" func f(root *TreeNode) (head, tail *TreeNode) { head, tail = root, root if root.Left != nil { &n...