Frage im Vorstellungsgespräch bei emids

Explain Binary Data structure and how do binary search for a unique element?

Antwort im Vorstellungsgespräch

Anonym

10. Juli 2021

In computer science, a binary tree is a tree data structure in which each node has at most two children, which are referred to as the left child and the right child.The idea of binary search is to use the information that the array is sorted and reduce the time complexity to O(Log n)

3