Binary Search

Binary Search

Wednesday, Jun 3, 2020

@ Sabbir

:pushpin: CODE-LIBRARY: // author: MSA int BinarySearch(int a[],int n,int target) { int low=0, high =n-1; while(low<=high) { int mid=low+(high-low)/2; // best formula to ignore overflow if(target==a[mid]) return mid; //mid element is the ans else if(a[mid]<target) low=mid+1; //moving to right side else high=mid-1; // moving to left side } return -1; //no value found } :pushpin: VIDEO-TUTORIALS : 1. mycodeschool 2. Errichto 3. AfterAcademy 4. Nick White :pushpin: PDF-TUTORIALS : 1.

About Me

Hello there , i am Sabbir.

2nd year undergraduate student at University of Asia Pacific

[i will write remaining parts later , brain is not working now !]

– Last Updated 01 June 2020

SKILLS

PROGRAMMING LANGUAGE SKILLS:

LANGUAGE Proficiency
C 60%
Java 35%
Python 50%
C++ 40%

OTHERS:

Topic Proficiency
Git 50%
Filmora 70%
Markdown 40%

Achievements

অনেক খুঁজছি , কিছুই পাই নাই , পুরা জীবনটাই বৃথা