Skip to content

Instantly share code, notes, and snippets.

@easleyschool
Created October 11, 2019 02:53
Show Gist options
  • Save easleyschool/7721de4bcb9ebf409573407b3396d880 to your computer and use it in GitHub Desktop.
Save easleyschool/7721de4bcb9ebf409573407b3396d880 to your computer and use it in GitHub Desktop.
void Doubly_Linked_List::forward_traverse()
{
node *trav;
trav = front;
while( trav != NULL )
{
cout << trav -> data << endl;
trav = trav -> next;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment