filmov
tv
Implementing a Linked List in Java (part 1 of 3)
![preview_player](https://i.ytimg.com/vi/qNkHOvEjh_o/maxresdefault.jpg)
Показать описание
0:07 - Overview of the LinkedList class
1:01 - Creating the LinkedList class
1:43 - Overview of the LinkedNode class
2:33 - Creating the private LinkedNode class
3:32 - Writing the LinkedList constructor
4:10 - The addToFront() method
6:45 - The addToRear() method
9:47 - The toString() method
11:54 - The size() method
12:05 - The first() and last() methods
13:02 - Testing the LinkedList class