Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Program to rotate linked list elements
- 1 --> 2 --> 3 --> 4 --> 5 --> 6 --> 7 --> 8 --> 9 --> 10 --> 11
- Rotating linked list by 4 places
- 5 --> 6 --> 7 --> 8 --> 9 --> 10 --> 11 --> 1 --> 2 --> 3 --> 4
Add Comment
Please, Sign In to add comment