Reversing the Values in an Array (Java Tutorial)

  Рет қаралды 34,206

Bill Barnum

Bill Barnum

Күн бұрын

Пікірлер: 55
@BillBarnum
@BillBarnum 5 жыл бұрын
📌 Subscribe For The Latest Videos: bit.ly/36H70sy 📌 . 💻 All Java Tutorials: bit.ly/JavaTutorialsKZbin 💻 . 🤖 Learn Java In 3 Hours: bit.ly/JavaIn3Hours 🤖
@MitchieWee
@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μ
@ΔημητρηςΣαμιωτης-τ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)
@BillBarnum
@BillBarnum 2 жыл бұрын
Thanks for the comment, Δημητρης. I'm glad you found the video useful!
@Gamuss12345
@Gamuss12345 Жыл бұрын
So far the best tutorial I've ever seen! Love this concept or explanation + visualisation! Thank you, Bill!
@cedricclamaran
@cedricclamaran 2 ай бұрын
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
@f3rdi881
@f3rdi881 5 жыл бұрын
Without the visuals this would have been impossible to comprehend.
@samreensaba288
@samreensaba288 3 ай бұрын
Yeah.. I have watched 2 tutorial but still wasn't able to understand
@JULIEDELARO
@JULIEDELARO 11 ай бұрын
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.
@BillBarnum
@BillBarnum 11 ай бұрын
I'm glad you found it helpful!
@Furmul
@Furmul 3 жыл бұрын
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!
@BillBarnum
@BillBarnum 3 жыл бұрын
Thanks for the feedback, Mark! I'm glad you liked the video.
@NicolasEZapata
@NicolasEZapata 5 жыл бұрын
So clear I knew what to do by the middle of the video. Good Stuff Sir!
@sudelicious.4045
@sudelicious.4045 4 жыл бұрын
keep doing the visual, it helps me to learn this very clearly. thanks a lot!
@BillBarnum
@BillBarnum 4 жыл бұрын
Thanks for the feeback. I'm glad you found the video useful!
@birkhansonkan4236
@birkhansonkan4236 7 жыл бұрын
visual explanaition is a great way of teaching, thanks
@Sami67995
@Sami67995 Жыл бұрын
step by step explanation and thanks for sharing
@chrisbaisley5571
@chrisbaisley5571 3 жыл бұрын
Very helpful, thank you!
@BillBarnum
@BillBarnum 3 жыл бұрын
Thanks, Chris.
@gami3917
@gami3917 4 жыл бұрын
Life Saver! clear explanation Thank you!
@BillBarnum
@BillBarnum 4 жыл бұрын
Thanks for the feedback! I'm glad you found it useful.
@kingjulian1046
@kingjulian1046 4 жыл бұрын
Great explanation and visuals really made a complex idea easy to understand top stuff.
@dmitrykoveshnikov
@dmitrykoveshnikov Жыл бұрын
Great video. THANK YOU
@RandomNoob1124
@RandomNoob1124 4 жыл бұрын
This visual is the best part🔥🔥🔥
@BillBarnum
@BillBarnum 4 жыл бұрын
Thanks for the feedback!
@bextrekks8354
@bextrekks8354 3 жыл бұрын
visual helped a lot - thanks!!
@BillBarnum
@BillBarnum 3 жыл бұрын
Thanks for the comment, Bex! I'm glad that you liked the video.
@PatrycjaMarkiewicz
@PatrycjaMarkiewicz Жыл бұрын
Great algorithm :)
@syedghouseullah
@syedghouseullah 2 жыл бұрын
Thankyou sir 🙏
@yasinfahmy
@yasinfahmy 3 жыл бұрын
perfect, thanks!!!
@BillBarnum
@BillBarnum 3 жыл бұрын
Glad it helped!
@Thorsssssss
@Thorsssssss 2 жыл бұрын
Thank you sensei. I love u for this💋
@nickhlope1717
@nickhlope1717 2 жыл бұрын
Great video. Just wanna ask why we had to say x.length - i - 1....what exactly does that mean
@BillBarnum
@BillBarnum 2 жыл бұрын
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.
@harshadaborade5712
@harshadaborade5712 4 жыл бұрын
Great🙏
@BillBarnum
@BillBarnum 4 жыл бұрын
Thanks for the feedback!
@kashvibhatia9910
@kashvibhatia9910 3 жыл бұрын
Thank you so much
@BillBarnum
@BillBarnum 3 жыл бұрын
I'm glad you liked the video, Kashvi!
@nadunrathnayaka160
@nadunrathnayaka160 4 жыл бұрын
why we divide length by 2
@BillBarnum
@BillBarnum 4 жыл бұрын
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.
@nadunrathnayaka160
@nadunrathnayaka160 4 жыл бұрын
@@BillBarnum thank you sir
@why1t
@why1t 3 жыл бұрын
If we aren't supposed to use this method on the AP exam, what method do we use then?
@BillBarnum
@BillBarnum 3 жыл бұрын
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.
@why1t
@why1t 3 жыл бұрын
@@BillBarnum ah, ok. Thanks! :)
@luxfortis4377
@luxfortis4377 5 жыл бұрын
thanks
@madchallenges847
@madchallenges847 11 ай бұрын
how to print at the end?
@BillBarnum
@BillBarnum 11 ай бұрын
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
@arhzzzmusic556
@arhzzzmusic556 4 жыл бұрын
What do i type to write the array out Out.print what???
@BillBarnum
@BillBarnum 4 жыл бұрын
I don't quite understand your question.
@arhzzzmusic556
@arhzzzmusic556 4 жыл бұрын
@@BillBarnum Dont worry I've figured it out.
@BillBarnum
@BillBarnum 4 жыл бұрын
@@arhzzzmusic556 Great!
@Thorsssssss
@Thorsssssss 2 жыл бұрын
@@arhzzzmusic556 how did u do that bro?
@nickhlope1717
@nickhlope1717 2 жыл бұрын
How did you print out the array elements to display
@brankoblesicjr.5792
@brankoblesicjr.5792 4 жыл бұрын
Writing Classes and Objects (Java Tutorial)
6:10
Bill Barnum
Рет қаралды 8 М.
Array vs. ArrayList in Java Tutorial - What's The Difference?
17:36
Coding with John
Рет қаралды 571 М.
Air Sigma Girl #sigma
0:32
Jin and Hattie
Рет қаралды 45 МЛН
Жездуха 42-серия
29:26
Million Show
Рет қаралды 2,6 МЛН
Arrays In Java Tutorial #10
9:26
Alex Lee
Рет қаралды 473 М.
Reverse an Array | Java | Program to reverse the contents of an Array
4:18
B Tech Computer Science
Рет қаралды 49 М.
Traversing an Array (Java Tutorial)
7:01
Bill Barnum
Рет қаралды 11 М.
Checking Equality in Java ( == vs equals method )
12:32
Bill Barnum
Рет қаралды 8 М.
I Redesigned the ENTIRE YouTube UI from Scratch
19:10
Juxtopposed
Рет қаралды 1 МЛН
Reverse an Array using Recursion - Java Code
10:41
Programming Tutorials
Рет қаралды 24 М.
Traversing a 2 Dimensional Array (Java Tutorial)
10:46
Bill Barnum
Рет қаралды 16 М.
Reverse String in Java Practice Program #41
11:53
Alex Lee
Рет қаралды 260 М.
Java arrays 🚗
6:26
Bro Code
Рет қаралды 237 М.
Air Sigma Girl #sigma
0:32
Jin and Hattie
Рет қаралды 45 МЛН