(Easy) What is Binary Search Tree?

Binary Search Tree

The Binary Search is an algorithm that is used to find elements in a sorted array. It starts in the middle and splits the list into halves until it finds the value it is looking for.

The Binary Search is sometimes referred to as the Logarithmic search. This is because the worst-case runtime is O(log n). If we double the size of the list, we will need one more iteration. [Runtime Complexity]

(Tamil)

Binary Search என்பது ஒரு வரிசைப்படுத்தப்பட்ட வரிசையில் உள்ள உறுப்புகளைக் கண்டறியப் பயன்படும் ஒரு வழிமுறையாகும். இது நடுவில் தொடங்கி, அது தேடும் மதிப்பைக் கண்டுபிடிக்கும் வரை பட்டியலை பகுதிகளாகப் பிரிக்கிறது.

Post a Comment

0 Comments