私はこのleetcodeの問題を抱えていましたが、なぜこの解決法が機能しないのかわかりません。それは頭の要素だけを返すようです。おかげ逆引きリストJavaメモリ
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
public class Solution {
public ListNode reverseList(ListNode head) {
ListNode curr = null;
ListNode lst = null;
while (head != null)
{
curr = head;
curr.next = lst;
lst = curr;
head = head.next;
}
return curr;
}
}