Search:

Type: Posts; User: Neobs

Search: Search took 0.10 seconds.

  1. Replies
    4
    Views
    1,571

    Re: Switch position of nodes on list

    Thanks for mocking me on both my threads...
  2. Replies
    4
    Views
    1,571

    Switch position of nodes on list

    I have a Generic Linked list in Java.


    class Node{
    T info;
    Node next;

    Node (T x){
    info = x;
    next = null;
Results 1 to 2 of 2