Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Reversing Linked List using loops
- Before Reversing the linked list is :
- 1 --> 2 --> 3 --> 4 --> 5 --> 6 --> 7 --> 8
- After Reversing the linked list is :
- 8 --> 7 --> 6 --> 5 --> 4 --> 3 --> 2 --> 1
Add Comment
Please, Sign In to add comment