Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の疑似コードがあります。
for j = 0 to argmax {l where t mod 2^l = 0} do
t は、この for ループの外でインクリメントされるカウンターです。私の質問は、argmax ステートメントを評価する方法ですか?
コードの「i」はタイプミスだと思います。「t」はおそらく正しいです。
私があなたの質問の要点を理解しているかどうかよくわかりませんか?
for (int j = 0; j < argmax; j++) {...}
argmax は関数なので、
for (int j = 0; j < argmax(); j++) {...} private int argmax () {return some int}