Leetcode初学——反转链表
程序员文章站
2024-02-29 08:03:04
...
题目:
代码:
class Solution {
public ListNode reverseList(ListNode head) {
ListNode cur=head;
ListNode pre=null;
while(cur!=null){
ListNode temp=cur.next;
cur.next=pre;
pre=cur;
cur=temp;
}
return pre;
}
}
结果:
上一篇: Springboot打成war包放入tomcat的webapps中启动
下一篇: session应用