I'll be working on today's study material soon. Sorry for the delay.
Review of Day 1
Some useful reading materials:
-
Value type and reference type: The Golden Rule of Equals https://joshhug.gitbooks.io/hug61b/content/chap2/chap21.html
-
How to implement SLL and DLL :
https://joshhug.gitbooks.io/hug61b/content/chap2/chap22.html
https://www.geeksforgeeks.org/singly-linked-list-tutorial/
-
Time complexity: https://joshhug.gitbooks.io/hug61b/content/chap8/chap84.html


Some explaination
The performance of software matters.
Big O or Big omega is just a tool for evaluating the algorithm or data structure. After we implement the SLL and DLL, we will summary the time complexity of each operations.
Java version DLL. The Node class and type can be used in the Node class itself.
I'll be working on today's study material soon. Sorry for the delay.
Review of Day 1
Some useful reading materials:
Value type and reference type: The Golden Rule of Equals https://joshhug.gitbooks.io/hug61b/content/chap2/chap21.html
How to implement SLL and DLL :
https://joshhug.gitbooks.io/hug61b/content/chap2/chap22.html
https://www.geeksforgeeks.org/singly-linked-list-tutorial/
Time complexity: https://joshhug.gitbooks.io/hug61b/content/chap8/chap84.html
Some explaination
The performance of software matters.
Big O or Big omega is just a tool for evaluating the algorithm or data structure. After we implement the SLL and DLL, we will summary the time complexity of each operations.
Java version DLL. The
Nodeclass and type can be used in theNodeclass itself.