单链表的反转

来源:互联网 发布:单片机与plc区别 编辑:程序博客网 时间:2024/06/06 04:51

单链表的反转

public class Solution {    public ListNode ReverseList(ListNode head) {                if(head == null)return null;                ListNode pre = null;        ListNode next = null;                while(head != null){            next = head.next;            head.next = pre;            pre = head;            head = next;        }        return pre;    }}


原创粉丝点击