在 tikz 中绘制二叉树

在 tikz 中绘制二叉树

我第一次尝试制作这棵树,我使用了这个代码,但出现了错误。我该如何纠正这些错误?

在此处输入链接描述

\documentclass[tikz,border=5]{standalone}
    \usetikzlibrary{graphs,graphdrawing,arrows.meta}
    \usegdlibrary{trees}
    \begin{document}
    \begin{tikzpicture}[>=Stealth]
    \graph[binary tree layout]{
      a -> {   
        b -> { 
          c -> { 
            d -> { e, f }, 
            g 
          }, 
        h -> { i, j }
        },
        k -> {
          l -> {
            m -> { n, o },
            p -> { q, r }
          }, 
          s -> {
            v -> {w, x},
            y -> {z}
          }
        }
      }
    };
    \end{tikzpicture}
    \end{document}

相关内容