ASMR coding linear search and binary search
This is an ASMR styled coding video where I code while giving you tingles.
In this video I code two array searching algorithms which are linear search and binary search. Linear search is just simply looping through the entire array from left to right until you find the value if it exists where as binary search involved cutting the search range in half for every iteration you do which speeds up the elimination process.
I also run binary versus linear search together on the same array keeping track on the number of lookups taken and comparing them.
Note that when I said "cutting the array in half" I meant that the searching is cut in half, not the actual array. It means that every time, I narrow down the search in half as mentioned above.
I make typing and keyboard noises for your tingles. Please drop a like if you have gotten those and I hope you enjoyed.
[0:00] Intro
[0:30] Linear search (easy)
[5:40] testing
[7:23] Binary search
[15:25] testing
[19:36] conclusion
[20:19] End