我想在 algorithm2e 伪代码中写下这个:
Do N times
stuff that has to be done N times
end
或者可能
Repeat N times
stuff that has to be done N times
end
由于循环体不依赖于循环索引,因此引入一个循环索引(就像在典型的“for”循环中一样)似乎有点小题大做。
我目前最好的解决方案是
\For{$N$ times}{
do stuff
}
但输出,“为了 N次 做“尚不清楚。
(algorithm2e 中有 Do 和 Repeat 命令,但它们都使用结束条件:Do...while
和Repeat...until
,所以不是我想要的。)