Thanks for you comment. Also, you check the code link mentioned in description box.
@thorbiy4 жыл бұрын
Definition of detailed explanation 🤩
@abhishekchouhan62842 жыл бұрын
Excellent teaching technique
@ProgrammingTutorials1M2 жыл бұрын
Thank you
@chuckmcgill32155 жыл бұрын
Very helpful & clear. Thanks for taking the time to make this video
@ProgrammingTutorials1M4 жыл бұрын
Thank you
@mohammadzeeshan26993 жыл бұрын
Thankiuu bhaiya.....it was very helpful ♥️♥️
@ProgrammingTutorials1M3 жыл бұрын
You're welcome 😊
@shretasathe64093 жыл бұрын
detailed explanations. thank you so much for the video.
@ProgrammingTutorials1M3 жыл бұрын
Thank you
@tanvirshorif2674 жыл бұрын
Really very helpful and detailed video. Thank you.
@ProgrammingTutorials1M4 жыл бұрын
Glad you enjoyed it!
@shahrukhshaikh95586 жыл бұрын
Simple and nice example.. 👍
@ProgrammingTutorials1M6 жыл бұрын
Thank you. I am glad you liked it.
@vivekdivekar483 жыл бұрын
Great i am searching this
@ProgrammingTutorials1M3 жыл бұрын
Great
@zahedali70793 жыл бұрын
Awesome 💐
@ProgrammingTutorials1M3 жыл бұрын
Thanks 🤗
@harshithamohan65693 жыл бұрын
Can I hv names In the output instead of integers ?
@o.yetunde78046 жыл бұрын
Very detailed video, thank you.
@ProgrammingTutorials1M6 жыл бұрын
I am glad you like it.
@syedmustafa78755 жыл бұрын
nice n silple ...thanks..
@ProgrammingTutorials1M4 жыл бұрын
Thank you
@devesh85373 жыл бұрын
Bro why doesn't it applicable for array size 5 or greater than that only applicable below size 4??
@ProgrammingTutorials1M3 жыл бұрын
It is also applicable for the array size 5
@devesh85373 жыл бұрын
@@ProgrammingTutorials1M no bro I tried u check once please actually the logic you used is wrong I think kindly check once
@youkeshgurung52804 жыл бұрын
Sir I have a one doubt.???? Please help me. My question is I have search last digit instead of mid digit and it shows last index of array. How?? We have actually use a arr[mid ] formula then how can be a last digit index have be shown. I mean by seeing the code and formula. It should only show the mid value of number. Sir I am really confused. Please help me..... 😩😩😩😩
@ProgrammingTutorials1M4 жыл бұрын
Mid is calculated based on these two indexes. These two indexes values depends on whether the value we are searching is greater or less than the value present at mid index.
@Ahmed-wz8qb6 жыл бұрын
Very clear thank you very much
@ProgrammingTutorials1M6 жыл бұрын
Thanks for your comment.
@sachinbhalla146 жыл бұрын
The Last Element does not consider in the program............ for Example we consider an array {1,2,3,4,5) and we search The Element 5 and The Output Become The Element is not present in list ,, How to solve This Problem?? plz Tell
@ProgrammingTutorials1M6 жыл бұрын
Hi Pranav, I run the code and entered the value you mentioned in the comment. The output was value found at index 4. You can check itself by running the code. Also, you check the code link mentioned in description box.
@youkeshgurung52804 жыл бұрын
OK but how it shows value of last digit. I mean by seeing the formula. It should only solve and show the mid value index. I am confuse. Please help me..
@GalS17675 жыл бұрын
my I ask why did you put mid=0 ?
@abdullahrehman83675 жыл бұрын
just giving an initial value
@globbyglad32445 жыл бұрын
If the highest index value is in odd then, what is the mid index value
@ProgrammingTutorials1M5 жыл бұрын
Let's assume, if start = 0 and end = 5 then mid is 2. As we have declared as int.
@adithyadasarathi13114 жыл бұрын
Why did you us for loop?
@ProgrammingTutorials1M4 жыл бұрын
Just for taking number of specified inputs. You can also do it by declaring an array. In that case, you don't have to take an input.
@MElA-qi1hc3 жыл бұрын
Sir I got error that is using class Scanner but location is in class BinarySearch
@ProgrammingTutorials1M3 жыл бұрын
Please share your code
@KaisarAnvar Жыл бұрын
Coding tutorials done by Indians are usually: 1. Background noise > tutorial voice. ALWAYS. 2. IDEs that you probably have never seen, or sometimes just whiteboard. 3. Runs the code via command prompt. 3. Makes you feel dumb by solving complex problems like a piece of cake.
@amzadhussain66396 жыл бұрын
nice video bro...
@ProgrammingTutorials1M6 жыл бұрын
Thanks for your appreciation.
@padmaavula98766 жыл бұрын
What if the total elements of array are even
@ProgrammingTutorials1M6 жыл бұрын
It works in a same way.
@venkaiahmalli43755 жыл бұрын
bro add program on BFS and DFS algrorithem in java
@ProgrammingTutorials1M5 жыл бұрын
Sure, I'll do that.
@brainfreaks55532 жыл бұрын
Everything was good but there is not proper explanation...
@shaheenshaikh67016 жыл бұрын
plz expln wht is arr[i]= in.nextInt() .thnks
@ProgrammingTutorials1M6 жыл бұрын
we are taking an input and store it at each index of array. For example - arr[0] = 1, arr[1] = 2 etc
@marqueburgess96226 жыл бұрын
arr[i] = in.nextInt() is taking the user inputted values and putting them into the array.....