优雅地中断/继续嵌套循环

优雅地中断/继续嵌套循环

在排版算法时,是否有一种优雅的方式来中断/继续嵌套循环。就像在 Rust 中一样。有什么建议吗?

\begin{algorithm}
 \texttt{'J:} \For{i = 1,...,n}{
   \For{j = 1,...,m}{
     \If{Something}{
       \KwSty{break} \texttt{'J}
     }
   }
 }
\end{algorithm}

相关内容