memrootじしょ
英和翻訳
Recursive step
Practical knowledge
Executive Function
Additive number theory
submit data
security log
eigenvalues
Complex number
application log
Neurodevelopmental Disorder
Recursive step
[rɪˈkɜːrsɪv stɛp]
リカーシブ ステップ
1.
再帰的なプロセスにおいて、関数やアルゴリズムが自身を呼び出し、問題をより小さな部分に分解していく段階。
再帰的なプロセスにおいて、関数やアルゴリズムが自身を呼び出し、問題をより小さな部分に分解していく段階を指します。このステップが繰り返されることで、最終的に基本ケースに到達し、処理が完了します。
In
a
factorial
function,
the
`n
*
factorial(n-1)`
part
represents
the
recursive
step.
(階乗関数において、`n * factorial(n-1)` の部分は再帰ステップを表します。)
In a factorial function
階乗関数において
the `n * factorial(n-1)` part
`n * factorial(n-1)` の部分
represents
~を表します
the recursive step
再帰ステップ
The
efficiency
of
a
recursive
algorithm
often
depends
on
how
effectively
its
recursive
step
reduces
the
problem
size.
(再帰アルゴリズムの効率は、その再帰ステップが問題のサイズをいかに効果的に削減するかにかかっていることが多い。)
The efficiency
効率
of a recursive algorithm
再帰アルゴリズムの
often depends on
~に依存することが多い
how effectively
どれだけ効果的に
its recursive step
その再帰ステップが
reduces the problem size
問題のサイズを削減するか
A
crucial
aspect
of
designing
recursive
solutions
is
ensuring
that
each
recursive
step
brings
you
closer
to
the
base
case.
(再帰的な解法を設計する上で重要な側面は、各再帰ステップが基本ケースに近づくことを保証することです。)
A crucial aspect
重要な側面
of designing recursive solutions
再帰的な解法を設計することの
is ensuring that
~を保証することです
each recursive step
各再帰ステップが
brings you closer
あなたを近づける
to the base case
基本ケースに
関連
recursion
base case
inductive step
algorithm
function