New: leedcodeAll contenthive-129948krhive-196917zzansteemhive-185836hive-166405hive-183959hive-180932hive-150122uncommonlabhive-144064photographyhive-101145hive-145157lifehive-188619hive-183397bitcoinkrsuccesshive-184714hive-181136hive-193637hive-109690hive-124908TrendingNewHotLikersallthingjapan (30)in reverse • 6 years ago(#2 mock interview) Reverse Linked List Recursive Solution in Java | LeetCode 206Reverse a singly linked list. Example: Input: 1 - 2 - 3 - 4- 5 - NULL Output: 5 - 4 - 3 - 2 - 1 - NULL Follow up: A linked list can be reversed either iteratively or recursively. We'll tackle…