m2skills

reverse Linked List OUTPUT

Jan 28th, 2018
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. Reversing Linked List using loops
  2.  
  3. Before Reversing the linked list is :
  4. 1 --> 2 --> 3 --> 4 --> 5 --> 6 --> 7 --> 8
  5. After Reversing the linked list is :
  6. 8 --> 7 --> 6 --> 5 --> 4 --> 3 --> 2 --> 1
Add Comment
Please, Sign In to add comment