Linear Search in Data Structure
Linear Search also called sequential search in data structure which works by scanning one by one element in the list until the searched element is found. For Example: If we want to search 30 in the following Array: Step-1 : Firstly, 30 is compared to first element that is 10 Step-2: When not matched then […]
Linear Search in Data Structure Read More »