Pregunta de entrevista de emids

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

Respuesta de la entrevista

Anónimo

10 de jul de 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