filmov
tv
C Programming: Cracking passwords faster by sorting and searching

Показать описание
In previous sessions we have increased the speed of our password cracker by pre-hashing the passwords. However, we are still doing a linear search on the array. This week we will learn how to search an array more quickly by sorting it, then using binary search.