New: leedcodeAll contenthive-129948hive-196917krzzanhive-183959hive-150122steemhive-185836hive-180932photographyhive-166405hive-183397hive-101145hive-144064uncommonlabhive-188619hive-184714hive-145157bitcoinhive-103599krsuccesshive-180301hive-193637hive-179660hive-193186TrendingNewHotLikersallthingjapan (30)in reverse • 7 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…