0% found this document useful (0 votes)
10 views1 page

Linked List LeetCode Problems

The document lists LeetCode linked list practice problems categorized into easy, medium, and hard levels. Each problem includes a title and a link to its corresponding page on LeetCode. The easy problems include tasks like reversing a linked list and merging two sorted lists, while medium and hard problems involve more complex operations on linked lists.

Uploaded by

RAHUL SADARAM
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views1 page

Linked List LeetCode Problems

The document lists LeetCode linked list practice problems categorized into easy, medium, and hard levels. Each problem includes a title and a link to its corresponding page on LeetCode. The easy problems include tasks like reversing a linked list and merging two sorted lists, while medium and hard problems involve more complex operations on linked lists.

Uploaded by

RAHUL SADARAM
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

LeetCode Linked List Practice Problems (C-Friendly)

Easy Problems

1. Reverse Linked List - https://leetcode.com/problems/reverse-linked-list

2. Merge Two Sorted Lists - https://leetcode.com/problems/merge-two-sorted-lists

3. Remove Duplicates from Sorted List - https://leetcode.com/problems/remove-duplicates-from-sorted-list

4. Middle of the Linked List - https://leetcode.com/problems/middle-of-the-linked-list

5. Linked List Cycle - https://leetcode.com/problems/linked-list-cycle

6. Delete Node in a Linked List - https://leetcode.com/problems/delete-node-in-a-linked-list

7. Intersection of Two Linked Lists - https://leetcode.com/problems/intersection-of-two-linked-lists

8. Remove Linked List Elements - https://leetcode.com/problems/remove-linked-list-elements

9. Palindrome Linked List - https://leetcode.com/problems/palindrome-linked-list

10. Swap Nodes in Pairs - https://leetcode.com/problems/swap-nodes-in-pairs

Medium Problems

11. Remove Nth Node From End of List - https://leetcode.com/problems/remove-nth-node-from-end-of-list

12. Reverse Linked List II - https://leetcode.com/problems/reverse-linked-list-ii

13. Remove Duplicates from Sorted List II -

https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii

14. Partition List - https://leetcode.com/problems/partition-list

15. Reorder List - https://leetcode.com/problems/reorder-list

16. Insertion Sort List - https://leetcode.com/problems/insertion-sort-list

17. Odd Even Linked List - https://leetcode.com/problems/odd-even-linked-list

18. Rotate List - https://leetcode.com/problems/rotate-list

19. Add Two Numbers - https://leetcode.com/problems/add-two-numbers

20. Split Linked List in Parts - https://leetcode.com/problems/split-linked-list-in-parts

Hard Problems

21. Reverse Nodes in k-Group - https://leetcode.com/problems/reverse-nodes-in-k-group

22. Add Two Numbers II - https://leetcode.com/problems/add-two-numbers-ii

23. Rotate List - https://leetcode.com/problems/rotate-list

24. Insertion Sort List - https://leetcode.com/problems/insertion-sort-list

You might also like