Linear Search

1 revision
#11 week ago
+6
Auto-generated stub article
+**Linear search** is a fundamental [Algorithm](/wiki/algorithm) for finding an item within a [List](/wiki/list). It sequentially checks each element until a match is found or the entire list is traversed. While simple to implement, its efficiency decreases with larger datasets.
+## See also
+- [Binary Search](/wiki/binary_search)
+- [Time Complexity](/wiki/time_complexity)
+- [Data Structure](/wiki/data_structure)
... 1 more lines