Finally, a tutorial that can help university students. All the other ones show you how to implement the correct List class, which you can almost never use to solve the uni problems with data structures.
@Bboyman11503 жыл бұрын
Simple print method I added: public void printElements() { Node selected = head; int position = 0; while(selected != null){ System.out.println("Node: '" + selected.element + "' at position " + position + "."); selected = selected.getNext(); position++; } }
@MegaSzym0n5 жыл бұрын
Thanks, way more helpful than my professor!
@pokrova704 жыл бұрын
Something I had to clarify for myself: public void reverseList() { if (size
@fedvgo6 жыл бұрын
good video. You def need to know some coding to understand this video. it helped me out thanks
@yousifsalam4 жыл бұрын
did we use the constructor Node(int e, Node n)? cause I don't believe so.. how do we use it? Say I want to copy a list of integers to this linked list, how do I do that?
@benammba53706 жыл бұрын
great content ,it's helping me alot
@johnchong96603 жыл бұрын
May I know this is list adt implement in linked list?
@serdashehu4 жыл бұрын
what does size==0 indicate ? for it to be head=tail, shouldn't the size be 1?
@itsMunchkin6 жыл бұрын
How do i save a list to a file?
@charbelantoinehanna8595 жыл бұрын
your software on git hub is not present anymore why?
@SolisPLC5 жыл бұрын
Looks like the link broke. Here's a new one... github.com/VRomanov89/EEEnthusiast/tree/master/04.%20Java%20Tutorials/JavaTutorials
@princesssingcol6294 жыл бұрын
Thank you!!
@MrMikomi6 жыл бұрын
Mate it doesn't work using your hands to illustrate stuff. We don't know which side is the front and which the back. Whether left hand side denotes the front or back of a list of items is arbitrary, plus you may or may not have transposed for the benefit of the viewer (your left is our right and vice versa).
@almahak21744 жыл бұрын
This shit is very hard
@iKostanCom7 жыл бұрын
It would be better to display some prerequisites before actual coding. I mean you have to have some serious background in terms of programming in order to understand this tutorial...