m2skills

rotate ll output

Jan 28th, 2018
763
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. Program to rotate linked list elements
  2. 1 --> 2 --> 3 --> 4 --> 5 --> 6 --> 7 --> 8 --> 9 --> 10 --> 11
  3.  
  4. Rotating linked list by 4 places
  5. 5 --> 6 --> 7 --> 8 --> 9 --> 10 --> 11 --> 1 --> 2 --> 3 --> 4
Add Comment
Please, Sign In to add comment