Yes Binary search can be done using linked list...
but we simply don't coz the complexity of binary search using linked list is O(nlgn) and not O(lgn ) as in arrays..
let me explain you why this..
basically the increase in complexity is because of the added complexity to seeking to any element which is constant when using array( when we need to reach middle we just index it in array , but in linked list we need to reach it by traversing the linked list ).
so we need to tranverse linked list for every step of binary search or log n times.
I guess i explained it properly enough....