recursive
意味一覧 (2件)
再帰的な
解説 Definition
自分自身を参照する。プログラムやアルゴリズムが自身の定義に基づいて実行される場合の特性である。複雑な問題をより簡潔に解く方法として使用される。
例文
The recursive function called itself multiple times to solve the problem.
その再帰的な関数はその問題を解くために複数回それ自体を呼び出した。
Recursive algorithms are useful for solving complex problems.
再帰的なアルゴリズムは複雑な問題を解くのに役立つ。
The recursive structure of the data requires careful handling.
データの再帰的な構造は慎重な取り扱いが必要である。
再帰的
(意味 2)解説 Definition
何かが自分自身を含む形で繰り返すことや、自分自身を参照して定義されることを指す。コンピュータ科学では関数やアルゴリズムが自分自身を呼び出す手続きや構造を指す。
Recursive means involving a process in which something refers to itself or repeats in a similar way. It is common in mathematics, computer science, and logic. This is a technical word often used for definitions, functions, or patterns.
覚え方のコツ Memory Tip
まず recur「繰り返し起こる」を知っていると入りやすく、recursive はそこに -ive が付いて「そういう性質をもつ」。ただし単なる repeat ではなく、「自分自身を参照しながら進む」のが核心です。recursive function, recursive call, recursive definition の形でよく見ます。iterative は手順を順に反復する感じ、recursive は一段内側に同じ形が入れ子になる感じ、と対比すると定着しやすいです。
Start from recur, which gives the idea of happening again. Recursive is more specific than simple repetition: it points to something that refers back to itself. Remember it with recursive function or recursive call, and contrast it with iterative, which repeats step by step instead.
例文
A recursive function calls itself with modified parameters.
再帰関数は修正されたパラメータで自身を呼び出します。
The recursive algorithm efficiently solved the problem.
再帰的なアルゴリズムは問題を効率的に解決しました。
Understanding recursive structures is essential for advanced programming.
再帰的な構造を理解することは高度なプログラミングに不可欠です。
recursive の類義語・関連語
外部辞書で調べる
この単語を英単語クイズで覚えよう