Skip to content

Instantly share code, notes, and snippets.

@gsathya
Created May 26, 2016 00:57
Show Gist options
  • Save gsathya/6bacd50d14c0c940bb9204e9280ce3ef to your computer and use it in GitHub Desktop.
Save gsathya/6bacd50d14c0c940bb9204e9280ce3ef to your computer and use it in GitHub Desktop.
Node prev_node = node;
Node next_node = node.next;
Node new_node = new Node(element, next_node);
prev_node.next = new_node;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment