Data Structure and Algorithms | 2020-05-01 Leetcode 148. Sort List Question Sort a linked list. Required time complexity is O(nlogn). The most c ...
Data Structure and Algorithms | 2020-04-28 Leetcode 147. Insertion Sort List Question Implement insertion sorting based on linked lists. Similar Questions Medium - 148. Sort ...
Data Structure and Algorithms | 2020-04-24 Leetcode 142. Linked List Cycle II Question Given a linked list, determine the entry point of the loop. The entry point is essential ...
Data Structure and Algorithms | 2020-03-31 Leetcode 109. Convert Sorted List to Binary Search Tree Question Given an ascending linked list and generate a balanced binary search tree. Similar Quest ...
Data Structure and Algorithms | 2020-02-24 Leetcode 86. Partition List Question The question is essentially the partition of quick-sort. The linked list is divided into ...
Data Structure and Algorithms | 2020-02-19 Leetcode 61. Rotate List Question Move the last linked list node to the front and repeat the process k times. Similar Ques ...
Data Structure and Algorithms | 2020-02-17 Leetcode 19. Remove Nth Node From End of List Question Given a linked list, delete the nth node from the end. Solution - 2 PassDeleting a node ...