検索結果- 英語 - 多言語
検索内容:
iterator pattern
(software, object-oriented programming) A behavioural design pattern that uses an iterator to traverse a container and access the container's elements, thus decoupling algorithms from containers.
(ソフトウェア・オブジェクト指向プログラミングにおける)イテレータを利用してコンテナ内を走査し、コンテナの各要素にアクセスすることで、アルゴリズムとデータ構造(コンテナ)を疎結合にするための振る舞い型デザインパターン
iterative aspect
(grammar) A subclass of imperfective verbs that denote a continuously repeated action. An example in English would be the iterative verb sniffle, as opposed to the noniterative sniff.
反復体:文法用語で、不完了体(動作が未完了あるいは継続中であることを示す形態)の一部として、継続的に繰り返される行動や動作を示す動詞の様相を指す。
iterated function system
(mathematics) A system of iterated functions used to construct fractals
数学において、フラクタルを構成するために用いられる反復関数系(反復写像系)
iterative deepening search
(computer science, graph theory) A type of depth-first search in which each row of the tree is searched incrementally, simulating a breadth-first search with less memory usage.
各段階で探索深度を増加させながら深さ優先探索を実行し、結果的に幅優先探索のような網羅性を保ちながらメモリ使用量を節減する探索アルゴリズム