Leetcode 25 Reverse Nodes in k-Group Edit Reverse Nodes in k-Group on GitHub The problem description is as follow: Given a linked list, reverse the nodes of a linked list
Leetcode 206 Reverse Linked List and 92 Reverse Linked List II Leetcode 206 Reverse Linked List The problem description is as follow: Reverse a singly linked list: /** * Definition
Leetcode 138 Copy List with Random Pointer The description of problem is : /** * Definition for singly-linked list with a random pointer. * class RandomListNode { * int label;
Implementing Simple HashTable Edit this problem on GitHub Hash table is a very important and interesting structure. If I were you, I would love to have my own hash table
How to tell if two linked lists intersect V.S. How to detect linked list cycle I am really excited to bring this, it’s gonna be fun, hope you enjoy. Edit