noun
chained list search; linked list search
A computing term for searching through a linked list data structure. Used in algorithm descriptions and technical documentation.
連結リスト探索の計算量は、最悪の場合 O(n) です。
The time complexity of a linked list search is O(n) in the worst case.
このアルゴリズムは連結リスト探索を高速化する。
This algorithm speeds up linked list searches.
Compound of 連結 (linking) + リスト (list) + 探索 (search), a direct calque from English 'linked list search'.