Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RakhmedovRS/47272129eea9dbc18b78f1591e79d3cd to your computer and use it in GitHub Desktop.
Save RakhmedovRS/47272129eea9dbc18b78f1591e79d3cd to your computer and use it in GitHub Desktop.
/**
* Append a node of value val to the last element of the linked list.
*/
public void addAtTail(int val)
{
Link link = new Link(val);
//<--
tail.prev.next = link;
link.prev = tail.prev;
//-->
link.next = tail;
tail.prev = link;
size++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment