I want to draw the following tree using tikz.

But I have already drawn the tree in vertical format.

Is there any way to convert the above diagram horizontally?
MWE
\documentclass[a4paper, 10pt]{report}
\usepackage{times}%times new roman
\usepackage{bookmark}
\usepackage[margin=0.5in]{geometry}
\usepackage{multicol}
\usepackage{pdflscape}
\usepackage{blindtext}
\usepackage{amsmath}
\usepackage{amssymb} %% for drwaaaaaaaaaaaaaaaing special symbols
\usepackage{empheq} %for box outside the equations
%%%%% Script for griffiths
% \usepackage{calligra}
% \DeclareMathAlphabet{\mathcalligra}{T1}{calligra}{m}{n}
% \DeclareFontShape{T1}{calligra}{m}{n}{<->s*[2.2]callig15}{}
% \newcommand{\scripty}[1]{\ensuremath{\mathcalligra{#1}}}
%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%% script for griffths 2
\usepackage{calligra}
\DeclareMathAlphabet{\mathcalligra}{T1}{calligra}{m}{n}
\DeclareFontShape{T1}{calligra}{m}{n}{<->s*[2.2]callig15}{}
\newcommand{\scriptr}{\mathcalligra{r}\,}
\newcommand{\boldscriptr}{\pmb{\mathcalligra{r}}\,}
%%%%%%%%%%%%%%%%%
\usepackage{graphicx}
\usepackage{graphics}
\usepackage{tikz}
\usetikzlibrary{angles,quotes, arrows,arrows.meta,backgrounds,calc,decorations,decorations.markings,decorations.pathmorphing,fit,positioning,shapes.arrows,shapes.callouts,shapes.geometric,shapes.misc}
\usepackage{circuitikz} %for drwaing ee circuit
\usepackage [edges, linguistics]{forest} % for drawing forest
\begin{document}
\begin{center}
\begin{forest}
forked edges,
[a
[b][c[d][e]]]]
\end{forest}
\end{center}
\end{document}


graphicsis already loaded bygraphicx, so loading it additionally, does not make sense.tikzalso loadsgraphicx. So loadinggraphicxbeforetikzis not needed.circuittikzalso loadstikz. And packagetimesis deprecated, see the the manual of the package, that providestimesonly for backward compatibility. – cabohah Apr 25 '23 at 11:38growand setting it usingfor tree. See my answer. – cabohah Apr 25 '23 at 11:51