chained list search; linked list search
A computing term for searching through a linked list data structure. Used in algorithm descriptions and technical documentation.
The time complexity of a linked list search is proportional to the number of elements.
このアルゴリズムは連結リスト探索を高速化する。
This algorithm speeds up linked list searches.
Compound of 連結 (linking) + リスト (list) + 探索 (search), a direct calque from English 'linked list search'.