I have a BTree made in TiKz in which I add a new element. Then the BTree has to be transformed. I would like to make it look like the example picture:
But I don't know how to achieve that? EDIT: I want to insert the arrow where the Rightarrow is in the example below
\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[german]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{tikz}
\usepackage{tikz-cd}
\usetikzlibrary{shapes}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\begin{document}
\begin{tikzpicture}
\tikzstyle{bplus}=[
rectangle split,
rectangle split horizontal,
rectangle split parts = 3,
draw
]
\tikzstyle{every node}=[bplus]
\tikzstyle{level 1}=[sibling distance=20mm]
\node {5 \nodepart{two} 6 \nodepart{three} 33}
;
\end{tikzpicture} $\Rightarrow$
\begin{tikzpicture}
\tikzstyle{bplus}=[
rectangle split,
rectangle split horizontal,
rectangle split parts = 3,
draw
]
\tikzstyle{every node}=[bplus]
\tikzstyle{level 1}=[sibling distance=20mm]
\node {5 \nodepart{two} 6 \nodepart{three} 33}
;
\end{tikzpicture}
\end{document}




