in java question:
Given a list of objects stored (in ascending order) in a sortedlinked list, implement member method which performs search asefficiently as possible for an object based on a key. (Note thatthe key type matches the field type by whichthe linked list issorted.). The method returns refenence to the node containing thekey, otherwise null is returned.
Answer