Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Program to delete kth element from the in a Linked List
- Linked list is :
- 1 --> 3 --> 5 --> 7 --> 7 --> 8 --> 5 --> 3 --> 1
- Linked List after deleting 5th element from the end is :
- 1 --> 3 --> 5 --> 7 --> 8 --> 5 --> 3 --> 1
Add Comment
Please, Sign In to add comment