Search:

Type: Posts; User: Dele

Search: Search took 0.07 seconds.

  1. Replies
    6
    Views
    2,156

    Re: Having trouble with linked list

    The final list size is always 10. The 11th item will be inserted but then the last node is immediately deleted as the list size is greater than 10.

    Dele
  2. Replies
    6
    Views
    2,156

    Re: Having trouble with linked list

    Here is my attempt for this problem. I found it easier to create my own linked list. I have 3 classes. The node class (LNode), the linked list class(LList) and the main app class (scoreApp).

    The...
Results 1 to 2 of 2