Advertisement
Luninariel

Email

Feb 11th, 2019
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. Data Structures Students,
  2. Unfortunately we will not be holding class tonight due to the closure of the college. Since this will cause us to miss an entire week of class, I am sending you handouts that I would have presented tonight on Linked Lists and the problem that would have been assigned tonight. Please take some time to review this.
  3.  
  4. The ShapesAbstractGerericLinkedList5.docx file contains a program that creates a linked list and then adds nodes to the beginning, end and in the middle of the list based on an order (smaller to larger) of one of the object variables. Please review the MyLinkManager class beginning at line 499. Also take a look at the code for functions
  5. 522 public int addnode(T x)
  6. 548 public T getnode(int x)
  7. 564 public void addinorder(T x)//This is for our own LL Build.
  8.  
  9. These are somewhat complex functions so please try to read through them before next week's class.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement