← Glossary
テクノロジ系 (Technology)Tested 1×
探索アルゴリズム
たんさくあるごりずむ · Search algorithm
Also known as: 探索
A category of algorithms for locating a target value within an array or data structure. The two most common types are linear search, which examines elements sequentially from the start, and binary search, which repeatedly halves a sorted array. Linear search has a time complexity proportional to the number of elements, while binary search grows logarithmically, making it more efficient for large sorted datasets.
Past questions testing this term · 1 questions
- 2023r05 #69配列に格納されているデータを探索するときの,探索アルゴリズムに関する記述のうち,適切なものはどれか。