我正在使用algorithm2e
包编写算法,并尝试将屏幕截图中的代码中的第 3 行和第 4 行添加为注释,\tcc{}
但不添加 seccuss。如何使用algorithm2e
包添加注释?
代码:
\documentclass{article}
\usepackage[linesnumbered,ruled,vlined]{algorithm2e}
\renewcommand{\baselinestretch}{1.5}
\usepackage{amsmath}
\begin{document}
\begin{algorithm}[H]
\SetAlgoLined
\KwData{2 graphs $T$ and $\acute{T}$ with nodes V and $\acute{V}$.}
\KwResult{Find whether $T$ and $\acute{T}$ are isomorph.}
function($T$, $\acute{T}$) \\
\Indp covert $T$ to $P_v$ and $\acute{T}$ to $\acute{P_v}$ ;\\
$d=deg(P_T) \leq h(T)$ and $S=\{1,2,3,\dots,2h(T)\}$; \\
$\acute{d} =deg(\acute{P_T}) \leq h(\acute{T})$ and $\acute{S}=\{1,2,3,\dots,2h(\acute{T})\}$; \\
\eIf{$Pr[P_v = \acute{P_v}] = \frac{d}{S}=\frac{h(T)}{2h(T)} ==\frac{1}{2}$}{
return true;
}{
return false;}
\end{algorithm}
\end{document}
答案1
我只是尝试过
\tcc{$d=deg(P_T) \leq h(T)$ and $S=\{1,2,3,\dots,2h(T)\}$}
\tcc{$\acute{d} =deg(\acute{P_T}) \leq h(\acute{T})$ and $\acute{S}=\{1,2,3,\dots,2h(\acute{T})\}$}
并且它工作正常。只需小心地; \\
从线的末端移除即可。