📌 Subscribe For The Latest Videos: bit.ly/36H70sy 📌 . 💻 All Java Tutorials: bit.ly/JavaTutorialsKZbin 💻 . 🤖 Learn Java In 3 Hours: bit.ly/JavaIn3Hours 🤖
@MitchieWee Жыл бұрын
As someone who learns by visualising I really appreciate this video. Help me not just understanding what i need to to but also WHAT i am doing. Thanks!
@ΔημητρηςΣαμιωτης-τ7μ2 жыл бұрын
Great video , in terms of explanatory power , you actually shed light into how the code works step by step. Not so many youtubers delve into the details of the code . ( commenting as a begginer)
@BillBarnum2 жыл бұрын
Thanks for the comment, Δημητρης. I'm glad you found the video useful!
@Gamuss12345 Жыл бұрын
So far the best tutorial I've ever seen! Love this concept or explanation + visualisation! Thank you, Bill!
@cedricclamaran2 ай бұрын
I had gotten the for loop working but didn't get what was actually going on, this video made it really easy to understand, thank you
@f3rdi8815 жыл бұрын
Without the visuals this would have been impossible to comprehend.
@samreensaba2883 ай бұрын
Yeah.. I have watched 2 tutorial but still wasn't able to understand
@JULIEDELARO11 ай бұрын
Oooh I love this. I'm at the start of my software engineering degree program online. The instruction is basically read the book, now code. I don't learn that way. This helped. Subscribed.
@BillBarnum11 ай бұрын
I'm glad you found it helpful!
@Furmul3 жыл бұрын
I am learning rn Arrays and this topic really hard on me but found your video and it helped me understand the logic behind the reverse exercise I had to make. thanks!
@BillBarnum3 жыл бұрын
Thanks for the feedback, Mark! I'm glad you liked the video.
@NicolasEZapata5 жыл бұрын
So clear I knew what to do by the middle of the video. Good Stuff Sir!
@sudelicious.40454 жыл бұрын
keep doing the visual, it helps me to learn this very clearly. thanks a lot!
@BillBarnum4 жыл бұрын
Thanks for the feeback. I'm glad you found the video useful!
@birkhansonkan42367 жыл бұрын
visual explanaition is a great way of teaching, thanks
@Sami67995 Жыл бұрын
step by step explanation and thanks for sharing
@chrisbaisley55713 жыл бұрын
Very helpful, thank you!
@BillBarnum3 жыл бұрын
Thanks, Chris.
@gami39174 жыл бұрын
Life Saver! clear explanation Thank you!
@BillBarnum4 жыл бұрын
Thanks for the feedback! I'm glad you found it useful.
@kingjulian10464 жыл бұрын
Great explanation and visuals really made a complex idea easy to understand top stuff.
@dmitrykoveshnikov Жыл бұрын
Great video. THANK YOU
@RandomNoob11244 жыл бұрын
This visual is the best part🔥🔥🔥
@BillBarnum4 жыл бұрын
Thanks for the feedback!
@bextrekks83543 жыл бұрын
visual helped a lot - thanks!!
@BillBarnum3 жыл бұрын
Thanks for the comment, Bex! I'm glad that you liked the video.
@PatrycjaMarkiewicz Жыл бұрын
Great algorithm :)
@syedghouseullah2 жыл бұрын
Thankyou sir 🙏
@yasinfahmy3 жыл бұрын
perfect, thanks!!!
@BillBarnum3 жыл бұрын
Glad it helped!
@Thorsssssss2 жыл бұрын
Thank you sensei. I love u for this💋
@nickhlope17172 жыл бұрын
Great video. Just wanna ask why we had to say x.length - i - 1....what exactly does that mean
@BillBarnum2 жыл бұрын
We want to swap each index with its corresponding value on the other end of the array. If i is 0, then x.length - i -1 will be the last index. If i is 1, then x.length - i - 1 will be the second to last index.
@harshadaborade57124 жыл бұрын
Great🙏
@BillBarnum4 жыл бұрын
Thanks for the feedback!
@kashvibhatia99103 жыл бұрын
Thank you so much
@BillBarnum3 жыл бұрын
I'm glad you liked the video, Kashvi!
@nadunrathnayaka1604 жыл бұрын
why we divide length by 2
@BillBarnum4 жыл бұрын
We only go through the first half of the array. As we are going through the first half, we swap values with the corresponding index in the second half.
@nadunrathnayaka1604 жыл бұрын
@@BillBarnum thank you sir
@why1t3 жыл бұрын
If we aren't supposed to use this method on the AP exam, what method do we use then?
@BillBarnum3 жыл бұрын
The algorithm I demonstrated would be fine. I mentioned another algorithm to reverse values using a temp array. However, I did not demonstrate that method.
@why1t3 жыл бұрын
@@BillBarnum ah, ok. Thanks! :)
@luxfortis43775 жыл бұрын
thanks
@madchallenges84711 ай бұрын
how to print at the end?
@BillBarnum11 ай бұрын
Before you declare the class: import java.util.Arrays; When you are ready to print it: System.out.println(Arrays.toString(x)); //assuming the array is named x
@arhzzzmusic5564 жыл бұрын
What do i type to write the array out Out.print what???
@BillBarnum4 жыл бұрын
I don't quite understand your question.
@arhzzzmusic5564 жыл бұрын
@@BillBarnum Dont worry I've figured it out.
@BillBarnum4 жыл бұрын
@@arhzzzmusic556 Great!
@Thorsssssss2 жыл бұрын
@@arhzzzmusic556 how did u do that bro?
@nickhlope17172 жыл бұрын
How did you print out the array elements to display