Hussein's Science and Engineering Blog
Recent Posts
The Algorithms and Limits Infinite Linear Search 2026-01-10
Searching for a specific value among a set of unsorted values is quite easily solvable, even to those new to computer science: add the values to a well-defined data structure, sort, and execute a search algorithm. When the target value is unknown beforehand, the problem becomes more difficult.